Skip to content

Commit 528760c

Browse files
committed
1.2.2
1 parent 5afafec commit 528760c

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
@@ -18,11 +18,11 @@ Install the plugin by adding the following to your `build.gradle.kts`:
1818

1919
```kotlin
2020
plugins {
21-
id("io.github.yairm210.purity-plugin") version "1.2.1"
21+
id("io.github.yairm210.purity-plugin") version "1.2.2"
2222
}
2323

2424
dependencies {
25-
implementation("io.github.yairm210:purity-annotations:1.2.1")
25+
implementation("io.github.yairm210:purity-annotations:1.2.2")
2626
}
2727
```
2828

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.2.1"
10+
version = "1.2.2"
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.2.1"
23+
version = "1.2.2"
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.2.1"
18+
id("io.github.yairm210.purity-plugin") version "1.2.2"
1919
}
2020

2121
dependencies {
22-
implementation("io.github.yairm210:purity-annotations:1.2.1")
22+
implementation("io.github.yairm210:purity-annotations:1.2.2")
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.2.1"
37+
version = "1.2.2"
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.2.1"
33+
const val VERSION_NUMBER = "1.2.2"
3434
}
3535

3636
private var gradleExtension : PurityConfiguration = PurityConfiguration()

0 commit comments

Comments
 (0)