Skip to content

Commit 92399c1

Browse files
author
Michael P Schroeder
committed
Release version 2.2.1
1 parent 7cf95e0 commit 92399c1

File tree

16 files changed

+28
-28
lines changed

16 files changed

+28
-28
lines changed

doc/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
# The short X.Y version.
5353
version = '2.2'
5454
# The full version, including alpha/beta/rc tags.
55-
release = '2.2.0'
55+
release = '2.2.1'
5656

5757
# The language for content autogenerated by Sphinx. Refer to documentation
5858
# for a list of supported languages.

howto-release.txt

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,17 @@ git pull
66
git push
77

88
# Start a new release or hotfix
9-
git-flow release start gitools-2.2.0
10-
git-flow hotfix start gitools-2.2.0
9+
git-flow release start gitools-2.2.1
10+
git-flow hotfix start gitools-2.2.1
1111

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.1.0/s//2.2.0/ "$0)}' | grep -A2 -B3 2.2.0
15+
find . -name pom.xml | awk '{ system("sed 0,/2.1.0/s//2.2.1/ "$0)}' | grep -A2 -B3 2.2.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.1.0/s//2.2.0/ "$0)}'
19+
find . -name pom.xml | awk '{ system("sed -i 0,/2.1.0/s//2.2.1/ "$0)}'
2020

2121
# Go to Documentation folder.
2222
# Check in src/conf.py if the version numbers are up to date
@@ -35,16 +35,16 @@ mvn -P test-analysis clean install assembly:assembly
3535

3636
# Test new release
3737
cd target
38-
unzip gitools-2.2.0-bin.zip
39-
gitools-2.2.0/bin/gitools
38+
unzip gitools-2.2.1-bin.zip
39+
gitools-2.2.1/bin/gitools
4040
cd ..
4141

4242
# Deploy ZIP file
43-
scp target/gitools-2.2.0-bin.zip bgadmin@ankara:/usr/local/gitools/www/downloads/
43+
scp target/gitools-2.2.1-bin.zip bgadmin@ankara:/usr/local/gitools/www/downloads/
4444

4545
# Deploy Webstart
4646
# change back to the gitools root folder
47-
./webstart-deploy.sh 2.2.0
47+
./webstart-deploy.sh 2.2.1
4848

4949
# Update this file on the server:
5050
/usr/local/gitools/www/downloads/latest.txt
@@ -56,22 +56,22 @@ make clean
5656
cd ..
5757

5858
# Commit the changes
59-
git commit -a -m "Release version 2.2.0"
59+
git commit -a -m "Release version 2.2.1"
6060

6161
# Finish the release or hotfix
62-
git flow release finish gitools-2.2.0
63-
git flow hotfix finish gitools-2.2.0
62+
git flow release finish gitools-2.2.1
63+
git flow hotfix finish gitools-2.2.1
6464

6565
# Check that you are on develop branch
6666
git checkout develop
6767

6868
# Update pom.xml versions to new SNAPSHOT version
6969

7070
# Check that you are going to update only the correct versions:
71-
find . -name pom.xml | awk '{ system("sed 0,/2.2.0/s//2.3.0-SNAPSHOT/ "$0)}' | grep -A2 -B3 2.3.0-SNAPSHOT
71+
find . -name pom.xml | awk '{ system("sed 0,/2.2.1/s//2.3.0-SNAPSHOT/ "$0)}' | grep -A2 -B3 2.3.0-SNAPSHOT
7272

7373
# Update all like this:
74-
find . -name pom.xml | awk '{ system("sed -i 0,/2.2.0/s//2.3.0-SNAPSHOT/ "$0)}'
74+
find . -name pom.xml | awk '{ system("sed -i 0,/2.2.1/s//2.3.0-SNAPSHOT/ "$0)}'
7575

7676
# Commit
7777
git commit -a -m "Next iteration version 2.3.0-SNAPSHOT"

org.gitools.analysis/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.3.0-SNAPSHOT</version>
8+
<version>2.2.1</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

org.gitools.api/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.3.0-SNAPSHOT</version>
8+
<version>2.2.1</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

org.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.3.0-SNAPSHOT</version>
6+
<version>2.2.1</version>
77
</parent>
88

99
<modelVersion>4.0.0</modelVersion>

org.gitools.datasources/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.3.0-SNAPSHOT</version>
8+
<version>2.2.1</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

org.gitools.heatmap/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.3.0-SNAPSHOT</version>
8+
<version>2.2.1</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

org.gitools.matrix/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.3.0-SNAPSHOT</version>
8+
<version>2.2.1</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

org.gitools.persistence/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.3.0-SNAPSHOT</version>
8+
<version>2.2.1</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

org.gitools.plugins.mutex/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.3.0-SNAPSHOT</version>
8+
<version>2.2.1</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

0 commit comments

Comments
 (0)