Skip to content

Commit 6df1f98

Browse files
committed
Updated release notes and readme for 1.0.3
1 parent b29e170 commit 6df1f98

7 files changed

Lines changed: 13 additions & 7 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Simply add `buildversion-plugin` to your pom, executing the `set-properties` goa
2323
<plugin>
2424
<groupId>com.code54.mojo</groupId>
2525
<artifactId>buildversion-plugin</artifactId>
26-
<version>1.0.3-SNAPSHOT</version>
26+
<version>1.0.3</version>
2727
<executions>
2828
<execution>
2929
<goals><goal>set-properties</goal></goals>
@@ -100,7 +100,7 @@ Example:
100100
<plugin>
101101
<groupId>com.code54.mojo</groupId>
102102
<artifactId>buildversion-plugin</artifactId>
103-
<version>1.0.3-SNAPSHOT</version>
103+
<version>1.0.3</version>
104104
<executions>
105105
<execution>
106106
<goals><goal>set-properties</goal></goals>

ReleaseNotes.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Release Notes - buildversion-plugin
22

3+
## v1.0.3
4+
5+
* [issue #6] Update conch dependency version. Hopefully breaking dependency on clojars.org repo at runtime
6+
37
## v1.0.2
48

59
* [issue #4] Ignore newline from git --format's output

finish-release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ version=$1
1111

1212
echo "finish release of $version"
1313

14-
echo -n "Peform release. enter to continue:" && read x \
14+
echo -n "Perform release. enter to continue:" && read x \
1515
&& mvn release:clean \
1616
&& mvn release:prepare -Dgpg.keyname=02FCB552 \
1717
&& mvn release:perform -Dgpg.keyname=02FCB552 \

src/it/custom-properties/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<plugin>
1919
<groupId>com.code54.mojo</groupId>
2020
<artifactId>buildversion-plugin</artifactId>
21-
<version>1.0.3-SNAPSHOT</version>
21+
<version>1.0.3</version>
2222
<executions>
2323
<execution>
2424
<goals><goal>set-properties</goal></goals>

src/it/setting-git-cmd/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<plugin>
1919
<groupId>com.code54.mojo</groupId>
2020
<artifactId>buildversion-plugin</artifactId>
21-
<version>1.0.3-SNAPSHOT</version>
21+
<version>1.0.3</version>
2222
<executions>
2323
<execution>
2424
<goals><goal>set-properties</goal></goals>

src/it/simple-project/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<plugin>
1919
<groupId>com.code54.mojo</groupId>
2020
<artifactId>buildversion-plugin</artifactId>
21-
<version>1.0.3-SNAPSHOT</version>
21+
<version>1.0.3</version>
2222
<executions>
2323
<execution>
2424
<goals><goal>set-properties</goal></goals>

start-release.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,11 @@ echo "Changes since $previous_version"
2525
git log --oneline v$previous_version..
2626
echo ""
2727
echo ""
28-
echo "Press [enter] to edit ReleaseNotes and README..."
28+
echo "Press [enter] to edit ReleaseNotes and README and other files refering to version number..."
2929
read
3030

3131

3232
$EDITOR ReleaseNotes.md
3333
$EDITOR README.md
34+
$EDITOR src/it/setting-git-cmd/pom.xml src/it/custom-properties/pom.xml src/it/simple-project/pom.xml
35+

0 commit comments

Comments
 (0)