Skip to content

Commit d3132b3

Browse files
authored
Version is now 1.2.2-SNAPSHOT (#209)
* version is now 1.2.2-SNAPSHOT * Add Changelog
1 parent 49b56fd commit d3132b3

3 files changed

Lines changed: 16 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
2+
# Version 1.2.1
3+
4+
A few fixes mostly around the settings plugin + fixed the publishing timeout.
5+
6+
## All Changes
7+
* Settings plugin: only apply to subprojects if the maven-publish plugin is applied by @martinbonnin in https://github.com/GradleUp/nmcp/pull/196
8+
* Settings plugin: allow the root project to apply both the regular and aggregation plugins by @martinbonnin in https://github.com/GradleUp/nmcp/pull/198
9+
* Use allprojects {} instead of subprojects {} by @martinbonnin in https://github.com/GradleUp/nmcp/pull/199
10+
* Fix publishing timeout by @martinbonnin in https://github.com/GradleUp/nmcp/pull/201
11+
* Add publishFileByFile(File, File) helper function by @martinbonnin in https://github.com/GradleUp/nmcp/pull/207
12+
113
# Version 1.2.0
214

315
Bunch of fixes + you can now call `nmcpPublishAggregationToMavenLocal` to verify your publishing process and/or test locally.

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Configure `nmcp` in your root project using the quick way:
2222
```kotlin
2323
// root/build.gradle[.kts]
2424
plugins {
25-
id("com.gradleup.nmcp.aggregation").version("1.2.0")
25+
id("com.gradleup.nmcp.aggregation").version("1.2.1")
2626
}
2727

2828
nmcpAggregation {
@@ -64,7 +64,7 @@ You can be 100% compatible by adding the plugin to each module you want to publi
6464
```kotlin
6565
//root/module/build.gradle.kts
6666
plugins {
67-
id("com.gradleup.nmcp").version("1.2.0")
67+
id("com.gradleup.nmcp").version("1.2.1")
6868
}
6969
```
7070

@@ -73,7 +73,7 @@ And then list all modules in your root project:
7373
```kotlin
7474
//root/build.gradle.kts
7575
plugins {
76-
id("com.gradleup.nmcp.aggregation").version("1.2.0")
76+
id("com.gradleup.nmcp.aggregation").version("1.2.1")
7777
}
7878

7979
nmcpAggregation {

librarian.root.properties

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

77
pom.groupId=com.gradleup.nmcp
8-
pom.version=1.2.1-SNAPSHOT
8+
pom.version=1.2.2-SNAPSHOT
99
pom.description=New Maven Central Publishing
1010
pom.vcsUrl=https://github.com/gradleup/nmcp
1111
pom.developer=nmcp authors

0 commit comments

Comments
 (0)