Skip to content

Commit 29241cb

Browse files
committed
1.1.0
1 parent 920c4ba commit 29241cb

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

Readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ Install the plugin by adding the following to your `build.gradle.kts`:
1515

1616
```kotlin
1717
plugins {
18-
id("io.github.yairm210.purity-plugin") version "1.0.0"
18+
id("io.github.yairm210.purity-plugin") version "1.1.0"
1919
}
2020

2121
dependencies {
22-
implementation("io.github.yairm210:purity-annotations:1.0.0")
22+
implementation("io.github.yairm210:purity-annotations:1.1.0")
2323
}
2424
```
2525

annotations/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins {
77
}
88

99
group = "io.github.yairm210"
10-
version = "1.0.0"
10+
version = "1.1.0"
1111

1212
kotlin {
1313
sourceSets{

compiler-plugin/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ allprojects {
2020
}
2121

2222
group = "io.github.yairm210"
23-
version = "1.0.0"
23+
version = "1.1.0"
2424

2525
mavenPublishing {
2626
coordinates(group.toString(), "purity-compiler-plugin", version.toString())

docs/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ Install the plugin by adding the following to your `build.gradle.kts`:
1515

1616
```kotlin
1717
plugins {
18-
id("io.github.yairm210.purity-plugin") version "1.0.0"
18+
id("io.github.yairm210.purity-plugin") version "1.1.0"
1919
}
2020

2121
dependencies {
22-
implementation("io.github.yairm210:purity-annotations:1.0.0")
22+
implementation("io.github.yairm210:purity-annotations:1.1.0")
2323
}
2424
```
2525

gradle-plugin/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ dependencies {
3434

3535

3636
group = "io.github.yairm210"
37-
version = "1.0.0"
37+
version = "1.1.0"
3838

3939
gradlePlugin {
4040
website = "https://github.com/yairm210/purity"

gradle-plugin/src/main/kotlin/yairm210/purity/PurityGradlePlugin.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class PurityGradlePlugin : KotlinCompilerPluginSupportPlugin {
3030
companion object {
3131
const val COMPILER_PLUGIN_GROUP_NAME = "io.github.yairm210"
3232
const val ARTIFACT_NAME = "purity-compiler-plugin"
33-
const val VERSION_NUMBER = "1.0.0"
33+
const val VERSION_NUMBER = "1.1.0"
3434
}
3535

3636
private var gradleExtension : PurityConfiguration = PurityConfiguration()

0 commit comments

Comments
 (0)