Skip to content

Commit

Permalink
chore(release): bump version to 1.0.3
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
dingyi222666 committed Sep 19, 2024
1 parent 4bcb926 commit 067cd73
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
}

group = "io.github.dingyi222666"
version = "1.0.2"
version = "1.0.3"

kotlin {
jvm {
Expand Down Expand Up @@ -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")
Expand Down

0 comments on commit 067cd73

Please sign in to comment.