Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@

# Version 1.2.1

A few fixes mostly around the settings plugin + fixed the publishing timeout.

## All Changes
* Settings plugin: only apply to subprojects if the maven-publish plugin is applied by @martinbonnin in https://github.com/GradleUp/nmcp/pull/196
* Settings plugin: allow the root project to apply both the regular and aggregation plugins by @martinbonnin in https://github.com/GradleUp/nmcp/pull/198
* Use allprojects {} instead of subprojects {} by @martinbonnin in https://github.com/GradleUp/nmcp/pull/199
* Fix publishing timeout by @martinbonnin in https://github.com/GradleUp/nmcp/pull/201
* Add publishFileByFile(File, File) helper function by @martinbonnin in https://github.com/GradleUp/nmcp/pull/207

# Version 1.2.0

Bunch of fixes + you can now call `nmcpPublishAggregationToMavenLocal` to verify your publishing process and/or test locally.
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Configure `nmcp` in your root project using the quick way:
```kotlin
// root/build.gradle[.kts]
plugins {
id("com.gradleup.nmcp.aggregation").version("1.2.0")
id("com.gradleup.nmcp.aggregation").version("1.2.1")
}

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

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

nmcpAggregation {
Expand Down
2 changes: 1 addition & 1 deletion librarian.root.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ kdoc.olderVersions=
kdoc.artifactId=kdoc

pom.groupId=com.gradleup.nmcp
pom.version=1.2.1-SNAPSHOT
pom.version=1.2.2-SNAPSHOT
pom.description=New Maven Central Publishing
pom.vcsUrl=https://github.com/gradleup/nmcp
pom.developer=nmcp authors
Expand Down