Skip to content

Commit

Permalink
Release v2.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
amirisback committed Sep 4, 2024
1 parent 28af083 commit 576d994
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
## Version Release
This Is Latest Release

$version_release = 2.0.4
$version_release = 2.0.5

What's New??

Expand Down Expand Up @@ -80,28 +80,28 @@ allprojects {
```groovy
dependencies {
// library frogo-ui
implementation 'com.github.frogobox:frogo-ui:2.0.4'
implementation 'com.github.frogobox:frogo-ui:2.0.5'
// library frogo-ui for desktop
implementation 'com.github.frogobox.frogo-ui:core-ui:2.0.4'
implementation 'com.github.frogobox.frogo-ui:core-ui:2.0.5'
}
```

#### <Option 2> Kotlin DSL Gradle
```groovy
dependencies {
// library frogo-ui
implementation("com.github.frogobox:frogo-ui:2.0.4")
implementation("com.github.frogobox:frogo-ui:2.0.5")
// library frogo-ui for desktop
implementation("com.github.frogobox.frogo-ui:core-ui:2.0.4")
implementation("com.github.frogobox.frogo-ui:core-ui:2.0.5")
}
```

#### <Option 3> libs.versions.toml
```yml
[versions]
frogoui = "2.0.4"
frogoui = "2.0.5"

[libraries]
frogo-ui = { group = "com.github.frogobox", name = "frogo-ui", version.ref = "frogoui" }
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/ProjectSetting.kt
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ object ProjectSetting {

const val VERSION_MAJOR = 2
const val VERSION_MINOR = 0
const val VERSION_PATCH = 4
const val VERSION_PATCH = 5

// ---------------------------------------------------------------------------------------------

Expand Down

0 comments on commit 576d994

Please sign in to comment.