diff --git a/CHANGELOG.md b/CHANGELOG.md index 9299d77..d865263 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ + +# Version 1.2.1 + +A few fixes mostly around the settings plugin + fixed the publishing timeout. + +## All Changes +* Settings plugin: only apply to subprojects if the maven-publish plugin is applied by @martinbonnin in https://github.com/GradleUp/nmcp/pull/196 +* Settings plugin: allow the root project to apply both the regular and aggregation plugins by @martinbonnin in https://github.com/GradleUp/nmcp/pull/198 +* Use allprojects {} instead of subprojects {} by @martinbonnin in https://github.com/GradleUp/nmcp/pull/199 +* Fix publishing timeout by @martinbonnin in https://github.com/GradleUp/nmcp/pull/201 +* Add publishFileByFile(File, File) helper function by @martinbonnin in https://github.com/GradleUp/nmcp/pull/207 + # Version 1.2.0 Bunch of fixes + you can now call `nmcpPublishAggregationToMavenLocal` to verify your publishing process and/or test locally. diff --git a/README.md b/README.md index 732e7ad..cd48927 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ Configure `nmcp` in your root project using the quick way: ```kotlin // root/build.gradle[.kts] plugins { - id("com.gradleup.nmcp.aggregation").version("1.2.0") + id("com.gradleup.nmcp.aggregation").version("1.2.1") } nmcpAggregation { @@ -64,7 +64,7 @@ You can be 100% compatible by adding the plugin to each module you want to publi ```kotlin //root/module/build.gradle.kts plugins { - id("com.gradleup.nmcp").version("1.2.0") + id("com.gradleup.nmcp").version("1.2.1") } ``` @@ -73,7 +73,7 @@ And then list all modules in your root project: ```kotlin //root/build.gradle.kts plugins { - id("com.gradleup.nmcp.aggregation").version("1.2.0") + id("com.gradleup.nmcp.aggregation").version("1.2.1") } nmcpAggregation { diff --git a/librarian.root.properties b/librarian.root.properties index 0f8595a..efc3711 100644 --- a/librarian.root.properties +++ b/librarian.root.properties @@ -5,7 +5,7 @@ kdoc.olderVersions= kdoc.artifactId=kdoc pom.groupId=com.gradleup.nmcp -pom.version=1.2.1-SNAPSHOT +pom.version=1.2.2-SNAPSHOT pom.description=New Maven Central Publishing pom.vcsUrl=https://github.com/gradleup/nmcp pom.developer=nmcp authors