Skip to content

Commit

Permalink
Prepare for release 0.23.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielittner committed Dec 30, 2022
1 parent 925f5d2 commit 55b2fbf
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 7 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,11 @@
# Change Log

Version 0.23.1 *(2022-12-30)*
---------------------------------

- also support publishing sources for the `java-test-fixtures` plugin in Kotlin/JVM projects
- suppress Gradle warnings when publishing a project that uses `java-test-fixtures`

Version 0.23.0 *(2022-12-29)*
---------------------------------

Expand Down
4 changes: 2 additions & 2 deletions docs/base.md
Expand Up @@ -12,15 +12,15 @@ Add the plugin to any Gradle project that should be published

```groovy
plugins {
id "com.vanniktech.maven.publish.base" version "0.23.0"
id "com.vanniktech.maven.publish.base" version "0.23.1"
}
```

=== "build.gradle.kts"

```kotlin
plugins {
id("com.vanniktech.maven.publish.base") version "0.23.0"
id("com.vanniktech.maven.publish.base") version "0.23.1"
}
```

Expand Down
4 changes: 2 additions & 2 deletions docs/central.md
Expand Up @@ -22,15 +22,15 @@ Add the plugin to any Gradle project that should be published

```groovy
plugins {
id "com.vanniktech.maven.publish" version "0.23.0"
id "com.vanniktech.maven.publish" version "0.23.1"
}
```

=== "build.gradle.kts"

```kotlin
plugins {
id("com.vanniktech.maven.publish") version "0.23.0"
id("com.vanniktech.maven.publish") version "0.23.1"
}
```

Expand Down
4 changes: 2 additions & 2 deletions docs/other.md
Expand Up @@ -11,15 +11,15 @@ Add the plugin to any Gradle project that should be published

```groovy
plugins {
id "com.vanniktech.maven.publish" version "0.23.0"
id "com.vanniktech.maven.publish" version "0.23.1"
}
```

=== "build.gradle.kts"

```kotlin
plugins {
id("com.vanniktech.maven.publish") version "0.23.0"
id("com.vanniktech.maven.publish") version "0.23.1"
}
```

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Expand Up @@ -7,7 +7,7 @@ SONATYPE_AUTOMATIC_RELEASE=true
RELEASE_SIGNING_ENABLED=true

GROUP=com.vanniktech
VERSION_NAME=0.24.0-SNAPSHOT
VERSION_NAME=0.23.1

POM_PACKAGING=jar

Expand Down

0 comments on commit 55b2fbf

Please sign in to comment.