Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
martinbonnin committed Feb 13, 2024
1 parent aeadaa1 commit e853550
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Nmcp does not create publications or apply the `maven-publish` plugin. This must

```kotlin
plugins {
id("com.gradleup.nmcp").version("0.0.2")
id("com.gradleup.nmcp").version("0.0.3")
}

// Create your publications
Expand All @@ -34,7 +34,7 @@ If you have a lot of publications, use the "quick" way:

```kotlin
plugins {
id("com.gradleup.nmcp").version("0.0.2")
id("com.gradleup.nmcp").version("0.0.3")
}

nmcp {
Expand All @@ -50,7 +50,7 @@ Or the project-isolation compatible way by adding the plugin to each module:

```kotlin
plugins {
id("com.gradleup.nmcp").version("0.0.2")
id("com.gradleup.nmcp").version("0.0.3")
}

nmcp {
Expand All @@ -62,7 +62,7 @@ And then listing all modules in yout root project:

```kotlin
plugins {
id("com.gradleup.nmcp").version("0.0.2")
id("com.gradleup.nmcp").version("0.0.3")
}

nmcp {
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ gradlePlugin {
}

group = "com.gradleup.nmcp"
version = "0.0.2"
version = "0.0.3"

publishing {
repositories {
Expand Down
4 changes: 2 additions & 2 deletions tests/jvm/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
plugins {
id("org.jetbrains.kotlin.jvm").version("1.9.22").apply(false)
id("com.gradleup.nmcp").version("0.0.2")
id("com.gradleup.nmcp").version("0.0.3")
}

val projectGroup = "net.mbonnin.tnmcp"
val projectVersion = "0.0.2"
val projectVersion = "0.0.3"

group = projectGroup
version = projectVersion
Expand Down
2 changes: 1 addition & 1 deletion tests/kmp/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ buildscript {
}

plugins {
id("com.gradleup.nmcp").version("0.0.2")
id("com.gradleup.nmcp").version("0.0.3")
}


Expand Down

0 comments on commit e853550

Please sign in to comment.