Skip to content

Commit 97e5435

Browse files
committed
build(pgrank): bump version from 0.1.2 to 0.1.3
1 parent 5c96725 commit 97e5435

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# -------------------------------------------
55

66
PROJECT_NAME = "pgrank"
7-
PROJECT_NUMBER = "0.1.2"
7+
PROJECT_NUMBER = "0.1.3"
88
PROJECT_BRIEF = "cpp app for computing pagerank"
99
BUILTIN_STL_SUPPORT = YES
1010
INPUT = README.md include/ src/

include/json2mat/json2mat.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* @file
33
* @authors Andrea Rossoni
4-
* @version 0.1.2
4+
* @version 0.1.3
55
*
66
* @subsubsection Description
77
*

include/pagerank/pagerank.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* @file
33
* @authors Andrea Rossoni
4-
* @version 0.1.2
4+
* @version 0.1.3
55
*
66
* @subsubsection Description
77
*

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ project('pgrank',
77
'warning_level=3',
88
'wrap_mode=nofallback',
99
'cpp_std=c++2a'],
10-
version : '0.1.2')
10+
version : '0.1.3')
1111

1212
# import cmake
1313
cmake = import('cmake')

src/json2mat/json2mat.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* @authors Andrea Rossoni
3-
* @version 0.1.2
3+
* @version 0.1.3
44
*
55
*/
66

src/pagerank/pagerank.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* @authors Andrea Rossoni
3-
* @version 0.1.2
3+
* @version 0.1.3
44
*
55
*/
66

src/pgrank.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* @authors Andrea Rossoni
3-
* @version 0.1.2
3+
* @version 0.1.3
44
* @subsubsection Description
55
*
66
* CLI for calculate rank
@@ -17,7 +17,7 @@
1717
int
1818
main(int argc, char* argv[])
1919
{
20-
argparse::ArgumentParser program("pgrank", "0.1.2");
20+
argparse::ArgumentParser program("pgrank", "0.1.3");
2121
program.add_argument("input").help("input json file");
2222
program.add_argument("output").help("output csv file");
2323
program.add_argument("-a", "--alpha")

tests/pgrank_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* @authors Andrea Rossoni
3-
* @version 0.1.2
3+
* @version 0.1.3
44
*
55
* @subsubsection Description
66
*

0 commit comments

Comments
 (0)