Skip to content

Commit e415de2

Browse files
committed
Bumped version 3.4.2 for release
1 parent 5d2e354 commit e415de2

File tree

17 files changed

+20
-20
lines changed

17 files changed

+20
-20
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@ mvn package -pl graphwalker-cli -am
2222

2323
The jar is in:
2424
```bash
25-
graphwalker-cli/target/graphwalker-cli-3.4.1.jar
25+
graphwalker-cli/target/graphwalker-cli-3.4.2.jar
2626
```

graphwalker-cli/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.graphwalker</groupId>
99
<artifactId>graphwalker-project</artifactId>
10-
<version>3.4.1</version>
10+
<version>3.4.2</version>
1111
</parent>
1212

1313
<artifactId>graphwalker-cli</artifactId>

graphwalker-cli/src/test/resources/template/perl.template

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ use warnings;
44

55
##
66
## 1) Generate perl stub source code:
7-
## java -jar graphwalker-3.4.1.jar source -i model.graphml perl.template > model.perl
7+
## java -jar graphwalker-3.4.2.jar source -i model.graphml perl.template > model.perl
88
##
99
## 2) Start graphwalker:
10-
## java -jar graphwalker-3.4.1.jar online -s RESTFUL -m model.graphml "random(edge_coverage(100))"
10+
## java -jar graphwalker-3.4.2.jar online -s RESTFUL -m model.graphml "random(edge_coverage(100))"
1111
##
1212
## 3) Run the per program:
1313
## perl login.perl http://localhost:8887/graphwalker

graphwalker-cli/src/test/resources/template/python.template

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ HEADER<{{
22
import requests,json
33
##
44
## 1) Generate python stub source code:
5-
## java -jar graphwalker-3.4.1.jar source -i model.graphml python.template > model.py
5+
## java -jar graphwalker-3.4.2.jar source -i model.graphml python.template > model.py
66
##
77
## 2) Start graphwalker:
8-
## java -jar graphwalker-3.4.1.jar online --json --service RESTFUL -m model.graphml "random(edge_coverage(100))"
8+
## java -jar graphwalker-3.4.2.jar online --json --service RESTFUL -m model.graphml "random(edge_coverage(100))"
99
##
1010
## 3) Run the per program:
1111
## python model.py

graphwalker-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.graphwalker</groupId>
99
<artifactId>graphwalker-project</artifactId>
10-
<version>3.4.1</version>
10+
<version>3.4.2</version>
1111
</parent>
1212

1313
<artifactId>graphwalker-core</artifactId>

graphwalker-dsl/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.graphwalker</groupId>
99
<artifactId>graphwalker-project</artifactId>
10-
<version>3.4.1</version>
10+
<version>3.4.2</version>
1111
</parent>
1212

1313
<artifactId>graphwalker-dsl</artifactId>

graphwalker-io/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.graphwalker</groupId>
99
<artifactId>graphwalker-project</artifactId>
10-
<version>3.4.1</version>
10+
<version>3.4.2</version>
1111
</parent>
1212

1313
<artifactId>graphwalker-io</artifactId>

graphwalker-java/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.graphwalker</groupId>
99
<artifactId>graphwalker-project</artifactId>
10-
<version>3.4.1</version>
10+
<version>3.4.2</version>
1111
</parent>
1212

1313
<artifactId>graphwalker-java</artifactId>

graphwalker-maven-archetype/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ A GraphWalker maven archetype. To help create boilerplate GraphWalker maven proj
77
To create a sample project:
88

99
~~~sh
10-
%> mvn archetype:generate -B -DarchetypeGroupId=org.graphwalker -DarchetypeArtifactId=graphwalker-maven-archetype -DarchetypeVersion=3.4.1-DgroupId=com.company -DartifactId=myProject
10+
%> mvn archetype:generate -B -DarchetypeGroupId=org.graphwalker -DarchetypeArtifactId=graphwalker-maven-archetype -DarchetypeVersion=3.4.2-DgroupId=com.company -DartifactId=myProject
1111
~~~
1212

1313
Then cd into the project:

graphwalker-maven-archetype/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.graphwalker</groupId>
99
<artifactId>graphwalker-project</artifactId>
10-
<version>3.4.1</version>
10+
<version>3.4.2</version>
1111
</parent>
1212

1313
<name>GraphWalker Maven Archetype</name>

0 commit comments

Comments
 (0)