From c479ff31392f0bdfadb97225865e5f43d5829552 Mon Sep 17 00:00:00 2001 From: Romain Quinio <romain.quinio@amadeus.com> Date: Sun, 6 Dec 2020 19:56:16 +0100 Subject: [PATCH] Release 1.1.0 --- pom.xml | 4 ++-- release.sh | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pom.xml b/pom.xml index 997fd92..7717ee9 100644 --- a/pom.xml +++ b/pom.xml @@ -2,7 +2,7 @@ <modelVersion>4.0.0</modelVersion> <groupId>com.amadeus.asciidoc</groupId> <artifactId>asciidoctor-extension-apidoc</artifactId> - <version>1.0-SNAPSHOT</version> + <version>1.1.0</version> <packaging>jar</packaging> <name>asciidoctor-extension-apidoc</name> @@ -220,7 +220,7 @@ <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> - <version>1.6.8</version> + <version>1.6.7</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> diff --git a/release.sh b/release.sh index e0884ce..d89dbc8 100644 --- a/release.sh +++ b/release.sh @@ -15,6 +15,6 @@ mvn versions:commit git add . git commit -m "Release $VERSION" git tag -a v$VERSION -m "v$VERSION" -mvn versions:set -DnewVersion=1.0-SNAPSHOT +mvn versions:set -DnewVersion=1.1-SNAPSHOT git add . git commit -m "Prepare for next development iteration"