From dd5a3d70c3e7b46c302ddf4425add44c313664a2 Mon Sep 17 00:00:00 2001 From: Infendro Date: Sat, 13 Dec 2025 23:04:44 +0100 Subject: [PATCH] update README --- README.md | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 374128c..6278a01 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,6 @@ -# Kotlin Database Migration +# migration-kt -This library enables code-based database migrations in Kotlin. - -## Features - -* Declare database migrations (identified by a unique name). - * Migrations are executed in the order they are declared in. -* Executed migrations are tracked in a database table and skipped on subsequent runs. +`migration-kt` is a Kotlin library that enables code-based migrations. ## Installation @@ -18,7 +12,7 @@ repositories { } dependencies { - implementation("com.infendro:migration:1.1.0") + implementation("com.infendro:migration:1.1.1") } ```