Skip to content

Commit fdc3760

Browse files
committed
0.0.51
1 parent 13c322f commit fdc3760

File tree

8 files changed

+10
-13
lines changed

8 files changed

+10
-13
lines changed

Readme.md

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

1414
```kotlin
1515
plugins {
16-
id("io.github.yairm210.purity-plugin") version "0.0.50"
16+
id("io.github.yairm210.purity-plugin") version "0.0.51"
1717
}
1818

1919
dependencies {
20-
compileOnly("io.github.yairm210:purity-annotations:0.0.50")
20+
compileOnly("io.github.yairm210:purity-annotations:0.0.51")
2121
}
2222
```
2323

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 = "0.0.50"
10+
version = "0.0.51"
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 = "0.0.50"
23+
version = "0.0.51"
2424

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

docs/.pages

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
11
nav:
22
- usage
3-
- advanced-usage
4-
- configuration
53
- development
6-
- principles
7-
- development
8-
- kotlin-ir-documentation

docs/index.md

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

1414
```kotlin
1515
plugins {
16-
id("io.github.yairm210.purity-plugin") version "0.0.50"
16+
id("io.github.yairm210.purity-plugin") version "0.0.51"
1717
}
1818

1919
dependencies {
20-
compileOnly("io.github.yairm210:purity-annotations:0.0.50")
20+
compileOnly("io.github.yairm210:purity-annotations:0.0.51")
2121
}
2222
```
2323

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 = "0.0.50"
37+
version = "0.0.51"
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 = "0.0.50"
33+
const val VERSION_NUMBER = "0.0.51"
3434
}
3535

3636
private var gradleExtension : PurityConfiguration = PurityConfiguration()

mkdocs.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ theme:
33
name: material
44
# logo: assets/Purity.svg
55
# favicon: assets/Purity.svg
6+
features:
7+
- navigation.expand # Open entire navigation tree by default
68

79
palette:
810
- scheme: default

0 commit comments

Comments
 (0)