Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
InsanusMokrassar committed Feb 10, 2024
1 parent 0b12df1 commit df6d70b
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 15 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

## 10.0.1

* `Version`:
* `Ktor`: `2.3.7` -> `2.3.8`
* `MicroUtils`: `0.20.26` -> `0.20.32`
* `Korlibs`: `5.3.0` -> `5.3.1`
* `KSLog`: `1.3.1` -> `1.3.2`

## 10.0.0

**Add support of [Telegram Bots API 7.0](https://core.telegram.org/bots/api-changelog#december-29-2023)**
Expand Down
12 changes: 6 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -54,13 +54,13 @@ if (new File(projectDir, "secret.gradle").exists()) {
githubRelease {
token "${project.property('GITHUB_RELEASE_TOKEN')}"

owner "InsanusMokrassar"
repo "TelegramBotAPI"
owner = "InsanusMokrassar"
repo = "TelegramBotAPI"

tagName "v$library_version"
releaseName "$library_version"
targetCommitish "$library_version"
tagName = "v$library_version"
releaseName = "$library_version"
targetCommitish = "$library_version"

body getCurrentVersionChangelog()
body = getCurrentVersionChangelog()
}
}
16 changes: 8 additions & 8 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,19 @@ kotlin-coroutines = "1.7.3"

javax-activation = "1.1.1"

korlibs = "5.3.0"
korlibs = "5.3.1"
uuid = "0.8.2"
ktor = "2.3.7"
ktor = "2.3.8"

ksp = "1.9.22-1.0.16"
kotlin-poet = "1.15.3"
ksp = "1.9.22-1.0.17"
kotlin-poet = "1.16.0"

microutils = "0.20.26"
kslog = "1.3.1"
microutils = "0.20.32"
kslog = "1.3.2"

versions = "0.50.0"
versions = "0.51.0"

github-release-plugin = "2.4.1"
github-release-plugin = "2.5.2"
dokka = "1.9.10"

[libraries]
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip

0 comments on commit df6d70b

Please sign in to comment.