diff --git a/CHANGELOG.md b/CHANGELOG.md index cfb418b..2621783 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +# Version 1.6.2 +_2026-08-31_ + +Compatibility with Gradle 9.8.0-milestone-2 and fixed some warnings about Gradle 10 incompatibility. Many thanks @snazy and @breskeby for the contributions 💙 + +## 👷‍♂️ All changes: +* Add a group and description to all `nmcp`-prefixed tasks (#269) +* Fix Gradle 10 issue in `DefaultNmcpSettings` (#270) +* Remove deprecated `Configuration.setVisible(boolean)` call on Gradle 9.8+ (#271) + # Version 1.6.1 _2026-07-01_ diff --git a/docs/src/content/docs/index.mdx b/docs/src/content/docs/index.mdx index 5d6e7bd..e58837b 100644 --- a/docs/src/content/docs/index.mdx +++ b/docs/src/content/docs/index.mdx @@ -32,7 +32,7 @@ Add the `com.gradleup.nmcp.settings` plugin to your `settings.gradle[.kts]` file ```kotlin // settings.gradle[.kts] plugins { - id("com.gradleup.nmcp.settings").version("1.6.1") + id("com.gradleup.nmcp.settings").version("1.6.2") } nmcpSettings { diff --git a/docs/src/content/docs/manual-configuration.mdx b/docs/src/content/docs/manual-configuration.mdx index 9b3a144..ade0d1e 100644 --- a/docs/src/content/docs/manual-configuration.mdx +++ b/docs/src/content/docs/manual-configuration.mdx @@ -35,7 +35,7 @@ In the project where you want to upload the deployment (typically your root proj ```kotlin // build.gradle.kts plugins { - id("com.gradleup.nmcp.aggregation").version("1.6.1") + id("com.gradleup.nmcp.aggregation").version("1.6.2") } nmcpAggregation { diff --git a/librarian.root.properties b/librarian.root.properties index da52680..58016b8 100644 --- a/librarian.root.properties +++ b/librarian.root.properties @@ -7,7 +7,7 @@ kdoc.artifactId=kdoc kdoc.projects=* pom.groupId=com.gradleup.nmcp -pom.version=1.6.2-SNAPSHOT +pom.version=1.6.3-SNAPSHOT pom.description=New Maven Central Publishing pom.vcsUrl=https://github.com/gradleup/nmcp pom.developer=nmcp authors diff --git a/nmcp/testProjects/duplicate-name/build.gradle.kts b/nmcp/testProjects/duplicate-name/build.gradle.kts index bac8aa4..0105441 100644 --- a/nmcp/testProjects/duplicate-name/build.gradle.kts +++ b/nmcp/testProjects/duplicate-name/build.gradle.kts @@ -1,6 +1,6 @@ plugins { id("org.jetbrains.kotlin.jvm").version("2.3.0").apply(false) - id("com.gradleup.nmcp.aggregation").version("1.6.2-SNAPSHOT") + id("com.gradleup.nmcp.aggregation").version("1.6.3-SNAPSHOT") } group = "com.example" diff --git a/nmcp/testProjects/empty-aggregation/build.gradle.kts b/nmcp/testProjects/empty-aggregation/build.gradle.kts index ebc77e9..875ae5e 100644 --- a/nmcp/testProjects/empty-aggregation/build.gradle.kts +++ b/nmcp/testProjects/empty-aggregation/build.gradle.kts @@ -1,3 +1,3 @@ plugins { - id("com.gradleup.nmcp.aggregation").version("1.6.2-SNAPSHOT") + id("com.gradleup.nmcp.aggregation").version("1.6.3-SNAPSHOT") }