Skip to content

Commit ec34987

Browse files
committed
Set version to 2.0.1
1 parent 028c106 commit ec34987

File tree

11 files changed

+19
-19
lines changed

11 files changed

+19
-19
lines changed

gitools-biomart/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.gitools</groupId>
88
<artifactId>gitools</artifactId>
9-
<version>2.0.0</version>
9+
<version>2.0.1</version>
1010
</parent>
1111

1212
<artifactId>gitools-biomart</artifactId>

gitools-cli/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>org.gitools</groupId>
55
<artifactId>gitools</artifactId>
6-
<version>2.0.0</version>
6+
<version>2.0.1</version>
77
</parent>
88

99
<modelVersion>4.0.0</modelVersion>

gitools-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>org.gitools</groupId>
66
<artifactId>gitools</artifactId>
7-
<version>2.0.0</version>
7+
<version>2.0.1</version>
88
</parent>
99

1010
<modelVersion>4.0.0</modelVersion>

gitools-intogen/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>gitools</artifactId>
77
<groupId>org.gitools</groupId>
8-
<version>2.0.0</version>
8+
<version>2.0.1</version>
99
</parent>
1010

1111
<groupId>org.gitools</groupId>

gitools-kegg/pom.xml

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

1313
<groupId>org.gitools</groupId>

gitools-obo/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<artifactId>gitools</artifactId>
88
<groupId>org.gitools</groupId>
9-
<version>2.0.0</version>
9+
<version>2.0.1</version>
1010
</parent>
1111

1212
<groupId>org.gitools</groupId>

gitools-ui-app/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>org.gitools</groupId>
66
<artifactId>gitools</artifactId>
7-
<version>2.0.0</version>
7+
<version>2.0.1</version>
88
</parent>
99

1010
<modelVersion>4.0.0</modelVersion>

gitools-ui-platform/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>gitools</artifactId>
77
<groupId>org.gitools</groupId>
8-
<version>2.0.0</version>
8+
<version>2.0.1</version>
99
</parent>
1010

1111
<groupId>org.gitools</groupId>

gitools-utils/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>org.gitools</groupId>
66
<artifactId>gitools</artifactId>
7-
<version>2.0.0</version>
7+
<version>2.0.1</version>
88
</parent>
99

1010
<modelVersion>4.0.0</modelVersion>

howto-release.txt

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,45 +12,45 @@ git-flow hotfix start gitools-2.0.0
1212
# Update pom.xml version
1313
# The following command only prints to display
1414
# Check that you are going to update only the correct versions:
15-
find . -name pom.xml | awk '{ system("sed 0,/2.0.0-SNAPSHOT/s//2.0.0/ "$0)}' | grep -A2 -B3 2.0.0
15+
find . -name pom.xml | awk '{ system("sed 0,/2.0.0/s//2.0.1/ "$0)}' | grep -A2 -B3 2.0.1
1616

1717
# The following command will apply the changes
1818
# Update all like this:
19-
find . -name pom.xml | awk '{ system("sed -i 0,/2.0.0-SNAPSHOT/s//2.0.0/ "$0)}'
19+
find . -name pom.xml | awk '{ system("sed -i 0,/2.0.0/s//2.0.1/ "$0)}'
2020

2121
# Compile and package
2222
mvn clean install assembly:assembly
2323

2424
# Test new release
2525
cd target
26-
unzip gitools-2.0.0-bin.zip
26+
unzip gitools-2.0.1-bin.zip
2727
gitools-2.0.0/bin/gitools
2828
cd ..
2929

3030
# Deploy ZIP file
31-
scp target/gitools-2.0.0-bin.zip bgadmin@ankara:/usr/local/gitools/www/downloads/
31+
scp target/gitools-2.0.1-bin.zip bgadmin@ankara:/usr/local/gitools/www/downloads/
3232

3333
# Deploy Webstart
3434
# change back to the gitools root folder
35-
./webstart-deploy.sh 2.0.0
35+
./webstart-deploy.sh 2.0.1
3636

3737
# Update this file on the server:
3838
/usr/local/gitools/www/downloads/latest.txt
3939

4040
# Commit the changes
41-
git commit -a -m "Set version to 2.0.0"
41+
git commit -a -m "Set version to 2.0.1"
4242

4343
# Finish the release or hotfix
44-
git flow release finish gitools-2.0.0
45-
git flow hotfix finish gitools-2.0.0
44+
git flow release finish gitools-2.0.1
45+
git flow hotfix finish gitools-2.0.1
4646

4747
# Check that you are on develop branch
4848
git checkout develop
4949

5050
# Update pom.xml versions to new SNAPSHOT version
5151

5252
# Check that you are going to update only the correct versions:
53-
find . -name pom.xml | awk '{ system("sed 0,/2.0.0/s//2.1.0-SNAPSHOT/ "$0)}' | grep -A2 -B3 2.1.0-SNAPSHOT
53+
find . -name pom.xml | awk '{ system("sed 0,/2.0.1/s//2.1.0-SNAPSHOT/ "$0)}' | grep -A2 -B3 2.1.0-SNAPSHOT
5454

5555
# Update all like this:
5656
find . -name pom.xml | awk '{ system("sed -i 0,/2.0.0/s//2.1.0-SNAPSHOT/ "$0)}'

0 commit comments

Comments
 (0)