From 54352da6a2d2074986e934a43645a68ff7b505db Mon Sep 17 00:00:00 2001 From: Sergey Shumov Date: Sat, 21 Jan 2023 23:50:19 +0300 Subject: [PATCH] bump version to 0.4.0 --- README.md | 4 ++-- gradle.properties | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 8e3382d..185faca 100644 --- a/README.md +++ b/README.md @@ -231,8 +231,8 @@ repositories { Add `exposed-ksp` dependencies: ```kotlin dependencies { - compileOnly("io.github.darkxanter.exposed:exposed-ksp-annotations:0.3.0") - ksp("io.github.darkxanter.exposed:exposed-ksp-processor:0.3.0") + compileOnly("io.github.darkxanter.exposed:exposed-ksp-annotations:0.4.0") + ksp("io.github.darkxanter.exposed:exposed-ksp-processor:0.4.0") } ``` To access generated code from KSP, you need to set up the source path into your module's `build.gradle.kts` file: diff --git a/gradle.properties b/gradle.properties index abc37ab..a3cb234 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,7 +1,7 @@ kotlin.code.style=official group=io.github.darkxanter.exposed -version=0.3.0 +version=0.4.0 kotlinVersion=1.7.22 dokkaVersion=1.7.10