From a4b5035fbc43d32e225b9ae21a69d0af8215d9bb Mon Sep 17 00:00:00 2001 From: Martin Bonnin Date: Tue, 30 Dec 2025 13:39:57 +0100 Subject: [PATCH 1/2] Bump version to 1.4.2-SNAPSHOT --- docs/src/content/docs/index.mdx | 2 +- docs/src/content/docs/manual-configuration.mdx | 2 +- librarian.root.properties | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/src/content/docs/index.mdx b/docs/src/content/docs/index.mdx index 0893561..1ea68b6 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.4.0") + id("com.gradleup.nmcp.settings").version("1.4.1") } nmcpSettings { diff --git a/docs/src/content/docs/manual-configuration.mdx b/docs/src/content/docs/manual-configuration.mdx index 415a407..f543b8e 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.4.0") + id("com.gradleup.nmcp.aggregation").version("1.4.1") } nmcpAggregation { diff --git a/librarian.root.properties b/librarian.root.properties index e0af320..a66cd70 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.4.1-SNAPSHOT +pom.version=1.4.2-SNAPSHOT pom.description=New Maven Central Publishing pom.vcsUrl=https://github.com/gradleup/nmcp pom.developer=nmcp authors From 4279692d3f73e26b73ba6128493fa18992619dae Mon Sep 17 00:00:00 2001 From: Martin Bonnin Date: Tue, 30 Dec 2025 13:43:14 +0100 Subject: [PATCH 2/2] update CHANGELOG --- CHANGELOG.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 887a2e3..62038fa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,13 @@ +# Version 1.4.1 +_2025-12-30_ + +Nmcp 1.4.1 refines the aggregation dependency resolution to avoid including by mistake projects that do not apply `com.gradleup.nmcp`. + +## 👷 All changes +* Fix zip files could contain unexpected files https://github.com/GradleUp/nmcp/pull/227 +* Bump Kotlin, OkHttp, xmlutil and a bunch of other dependencies https://github.com/GradleUp/nmcp/pull/228 + # Version 1.4.0 Nmcp can now be 100% configured from `settings.gradle[.kts]`: