From 1f8a8c1c7959b88e990d43877c2b96f790eebbfe Mon Sep 17 00:00:00 2001 From: Gabriel Ittner Date: Thu, 29 Dec 2022 11:46:44 +0100 Subject: [PATCH] Prepare for release 0.23.0. --- CHANGELOG.md | 2 +- docs/base.md | 4 ++-- docs/central.md | 4 ++-- docs/other.md | 4 ++-- gradle.properties | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index eb9e9126..46899daf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Change Log -Version 0.23.0 *UNRELEASED* +Version 0.23.0 *(2022-12-29)* --------------------------------- Updated docs can be found on [the new website](https://vanniktech.github.io/gradle-maven-publish-plugin/). diff --git a/docs/base.md b/docs/base.md index 93ac7bf8..dba33b12 100644 --- a/docs/base.md +++ b/docs/base.md @@ -12,7 +12,7 @@ Add the plugin to any Gradle project that should be published ```groovy plugins { - id "com.vanniktech.maven.publish.base" version "0.22.0" + id "com.vanniktech.maven.publish.base" version "0.23.0" } ``` @@ -20,7 +20,7 @@ Add the plugin to any Gradle project that should be published ```kotlin plugins { - id("com.vanniktech.maven.publish.base") version "0.22.0" + id("com.vanniktech.maven.publish.base") version "0.23.0" } ``` diff --git a/docs/central.md b/docs/central.md index 7e40fa63..3820e9c6 100755 --- a/docs/central.md +++ b/docs/central.md @@ -22,7 +22,7 @@ Add the plugin to any Gradle project that should be published ```groovy plugins { - id "com.vanniktech.maven.publish" version "0.22.0" + id "com.vanniktech.maven.publish" version "0.23.0" } ``` @@ -30,7 +30,7 @@ Add the plugin to any Gradle project that should be published ```kotlin plugins { - id("com.vanniktech.maven.publish") version "0.22.0" + id("com.vanniktech.maven.publish") version "0.23.0" } ``` diff --git a/docs/other.md b/docs/other.md index c62cfefd..893f0361 100755 --- a/docs/other.md +++ b/docs/other.md @@ -11,7 +11,7 @@ Add the plugin to any Gradle project that should be published ```groovy plugins { - id "com.vanniktech.maven.publish" version "0.22.0" + id "com.vanniktech.maven.publish" version "0.23.0" } ``` @@ -19,7 +19,7 @@ Add the plugin to any Gradle project that should be published ```kotlin plugins { - id("com.vanniktech.maven.publish") version "0.22.0" + id("com.vanniktech.maven.publish") version "0.23.0" } ``` diff --git a/gradle.properties b/gradle.properties index d34e2abd..520fac6e 100755 --- a/gradle.properties +++ b/gradle.properties @@ -7,7 +7,7 @@ SONATYPE_AUTOMATIC_RELEASE=true RELEASE_SIGNING_ENABLED=true GROUP=com.vanniktech -VERSION_NAME=0.23.0-SNAPSHOT +VERSION_NAME=0.23.0 POM_PACKAGING=jar