Skip to content

Commit f65ef9a

Browse files
committed
chore: release 0.1.9 (branch-local version bump)
1 parent 739165f commit f65ef9a

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

AGENTS.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ VERSION="$(awk -F= '/^VERSION=/{print $2; exit}' .env)"; echo "$VERSION"
322322

323323
git checkout -b "rel-$VERSION" && echo "✅ Success" || echo "🛑 Branch already exists did you bump the version after you completed the last release?"
324324

325-
mvn -q versions:set -DnewVersion="$VERSION" && echo "✅ Success" || echo "🛑 Unable to set the new versions"
325+
mvnd -q versions:set -DnewVersion="$VERSION" && echo "✅ Success" || echo "🛑 Unable to set the new versions"
326326

327327
git commit -am "chore: release $VERSION (branch-local version bump)" && echo "✅ Success" || echo "🛑 Nothing to commit; did you set the same version as already in the POM?"
328328

@@ -340,7 +340,7 @@ set -a; . ./.env; set +a
340340

341341
KEYARG=""; [ -n "$GPG_KEYNAME" ] && KEYARG="-Dgpg.keyname=$GPG_KEYNAME"
342342

343-
mvn -P release -Dgpg.passphrase="$GPG_PASSPHRASE" $KEYARG clean deploy && echo "✅ Success" || echo "🛑 Unable to deploy to Maven Central; check the output for details"
343+
mvnd -P release -Dgpg.passphrase="$GPG_PASSPHRASE" $KEYARG clean deploy && echo "✅ Success" || echo "🛑 Unable to deploy to Maven Central; check the output for details"
344344

345345
git push -u origin "rel-$VERSION" && echo "✅ Success" || echo "🛑 Unable to push branch; do you have permission to push to this repo?"
346346

json-compatibility-suite/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>io.github.simbo1905.json</groupId>
99
<artifactId>parent</artifactId>
10-
<version>0.1.0</version>
10+
<version>0.1.9</version>
1111
</parent>
1212

1313
<artifactId>json-compatibility-suite</artifactId>

json-java21-api-tracker/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>io.github.simbo1905.json</groupId>
99
<artifactId>parent</artifactId>
10-
<version>0.1.0</version>
10+
<version>0.1.9</version>
1111
</parent>
1212

1313
<artifactId>json-java21-api-tracker</artifactId>

json-java21-schema/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<groupId>io.github.simbo1905.json</groupId>
1010
<artifactId>parent</artifactId>
11-
<version>0.1.0</version>
11+
<version>0.1.9</version>
1212
</parent>
1313

1414
<artifactId>java.util.json.schema</artifactId>

json-java21/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>io.github.simbo1905.json</groupId>
99
<artifactId>parent</artifactId>
10-
<version>0.1.0</version>
10+
<version>0.1.9</version>
1111
</parent>
1212

1313
<artifactId>java.util.json</artifactId>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>io.github.simbo1905.json</groupId>
88
<artifactId>parent</artifactId>
9-
<version>0.1.0</version>
9+
<version>0.1.9</version>
1010
<packaging>pom</packaging>
1111

1212
<name>java.util.json Java21 Backport Parent</name>

0 commit comments

Comments
 (0)