From 0cc1f208ff287160d14c78431d597f22da899d02 Mon Sep 17 00:00:00 2001 From: Infendro Date: Thu, 2 Oct 2025 11:26:01 +0200 Subject: [PATCH] bump version to 1.1.0 --- README.md | 10 +++------- build.gradle.kts | 2 +- gradle/libs.versions.toml | 2 +- 3 files changed, 5 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 38d1ca7..593c292 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ repositories { } dependencies { - implementation("com.infendro:ktor-migration:1.0.2") + implementation("com.infendro:ktor-migration:1.1.0") } ``` @@ -25,12 +25,8 @@ import org.jetbrains.exposed.sql.Database fun Application.configureDatabase() { // connect to a database - Database.connect( - url = , - user = , - password = , - ) - + Database.connect(/* ... */) + // install the plugin install(Migration) { // create a migration diff --git a/build.gradle.kts b/build.gradle.kts index b061d72..c335732 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -1,5 +1,5 @@ group = "com.infendro" -version = "1.0.2" +version = "1.1.0" repositories { maven("https://git.infendro.com/api/packages/Infendro/maven") diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 8228400..1b5723f 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -2,7 +2,7 @@ kotlin = "2.2.10" ktor = "3.2.3" exposed = "0.61.0" -migration = "1.0.0" +migration = "1.1.0" [plugins] kotlin = { id = "org.jetbrains.kotlin.jvm", version.ref = "kotlin" }