Skip to content

Commit 61585e3

Browse files
authored
bump to 1.4.3 SNAPSHOT (#237)
* Bump version to 1.4.3-SNAPSHOT * add changelog
1 parent e82d7fa commit 61585e3

File tree

6 files changed

+16
-5
lines changed

6 files changed

+16
-5
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
# Version 1.4.2
2+
_2025-12-31_
3+
4+
Version 1.4.2 fixes for snapshots returning 400 on XML 1.1 and handles some configuration errors more gracefully.
5+
6+
## 👷‍♂️ All changes
7+
* Make sure to send XML 1.0 (Fixes 400 error when publishing snapshots) https://github.com/GradleUp/nmcp/pull/231
8+
* Add `NmcpAggregationExtension.localRepository()` https://github.com/GradleUp/nmcp/pull/234
9+
* Fail if there are duplicate project names https://github.com/GradleUp/nmcp/pull/233
10+
* Display an error if the aggregation is empty https://github.com/GradleUp/nmcp/pull/236
11+
112

213
# Version 1.4.1
314
_2025-12-30_

docs/src/content/docs/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Add the `com.gradleup.nmcp.settings` plugin to your `settings.gradle[.kts]` file
3232
```kotlin
3333
// settings.gradle[.kts]
3434
plugins {
35-
id("com.gradleup.nmcp.settings").version("1.4.1")
35+
id("com.gradleup.nmcp.settings").version("1.4.2")
3636
}
3737

3838
nmcpSettings {

docs/src/content/docs/manual-configuration.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ In the project where you want to upload the deployment (typically your root proj
3535
```kotlin
3636
// build.gradle.kts
3737
plugins {
38-
id("com.gradleup.nmcp.aggregation").version("1.4.1")
38+
id("com.gradleup.nmcp.aggregation").version("1.4.2")
3939
}
4040

4141
nmcpAggregation {

librarian.root.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ kdoc.olderVersions=
66
kdoc.artifactId=kdoc
77

88
pom.groupId=com.gradleup.nmcp
9-
pom.version=1.4.2-SNAPSHOT
9+
pom.version=1.4.3-SNAPSHOT
1010
pom.description=New Maven Central Publishing
1111
pom.vcsUrl=https://github.com/gradleup/nmcp
1212
pom.developer=nmcp authors

nmcp/testProjects/duplicate-name/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
id("org.jetbrains.kotlin.jvm").version("2.3.0").apply(false)
3-
id("com.gradleup.nmcp.aggregation").version("1.4.2-SNAPSHOT")
3+
id("com.gradleup.nmcp.aggregation").version("1.4.3-SNAPSHOT")
44
}
55

66
group = "com.example"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
plugins {
2-
id("com.gradleup.nmcp.aggregation").version("1.4.2-SNAPSHOT")
2+
id("com.gradleup.nmcp.aggregation").version("1.4.3-SNAPSHOT")
33
}

0 commit comments

Comments
 (0)