From 067cd736c58b555fd6b4b9ee1fb10dacfa435b79 Mon Sep 17 00:00:00 2001 From: dingyi Date: Thu, 19 Sep 2024 18:29:25 +0800 Subject: [PATCH] chore(release): bump version to 1.0.3 Increase the version number in build.gradle.kts and update the dependency in README.md to reflect the new version of the luaparser library. This change is part of the release process to ensure consistency across project files. --- README.md | 2 +- build.gradle.kts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 93450f3..9fd6c2a 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ A Lua 5.3 Lexer & Parser written in pure Kotlin. - Add the dependency to your gradle file ```kotlin -implementation("io.github.dingyi222666:luaparser:1.0.2") +implementation("io.github.dingyi222666:luaparser:1.0.3") ``` Ok. Use it like this: diff --git a/build.gradle.kts b/build.gradle.kts index 8350c6b..9f3cf3e 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -7,7 +7,7 @@ plugins { } group = "io.github.dingyi222666" -version = "1.0.2" +version = "1.0.3" kotlin { jvm { @@ -82,7 +82,7 @@ mavenPublishing { signAllPublications() - coordinates("io.github.dingyi222666", "luaparser", "1.0.2") + coordinates("io.github.dingyi222666", "luaparser", "1.0.3") pom { name.set("luaparser")