Skip to content

Commit 0bfe0a0

Browse files
authored
Bump version to 1.4.5-SNAPSHOT (#248)
* Bump version to 1.4.5-SNAPSHOT * Update CHANGELOG
1 parent 5d45e1f commit 0bfe0a0

File tree

7 files changed

+18
-6
lines changed

7 files changed

+18
-6
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
# Version 1.4.4
2+
_2026-01-24_
3+
4+
Nmcp 1.4.4 retries more aggressively when Sonatype is flaky, and makes it more explicit that `publishAllProjectsProbablyBreakingProjectIsolation()` is still OK to use if you don't mind about project isolation.
5+
6+
* Implement retry for snapshots/deployment upload/status check (https://github.com/GradleUp/nmcp/pull/244)
7+
* Move the empty files check to execution (https://github.com/GradleUp/nmcp/pull/243)
8+
* Update deprecation message (https://github.com/GradleUp/nmcp/pull/247)
9+
110
# Version 1.4.3
211
_2026-01-02_
312

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.3")
35+
id("com.gradleup.nmcp.settings").version("1.4.4")
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.3")
38+
id("com.gradleup.nmcp.aggregation").version("1.4.4")
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.4-SNAPSHOT
9+
pom.version=1.4.5-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.4-SNAPSHOT")
3+
id("com.gradleup.nmcp.aggregation").version("1.4.5-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.4-SNAPSHOT")
2+
id("com.gradleup.nmcp.aggregation").version("1.4.5-SNAPSHOT")
33
}

scripts/update-repo.main.kts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,10 @@ import com.gradleup.librarian.cli.updateRepo
1212
updateRepo(
1313
args,
1414
setVersion = {
15-
file("nmcp/testProjec/duplicate-name/build.gradle.kts") {
15+
file("nmcp/testProjects/duplicate-name/build.gradle.kts") {
16+
replacePluginVersion("com.gradleup.nmcp.aggregation")
17+
}
18+
file("nmcp/testProjects/empty-aggregation/build.gradle.kts") {
1619
replacePluginVersion("com.gradleup.nmcp.aggregation")
1720
}
1821
},

0 commit comments

Comments
 (0)