Compare commits

..

15 Commits

Author SHA1 Message Date
bd26cbd4d8 small cleanup of updates 2025-12-17 14:24:52 +06:00
8b7ca70d5f update dependencies
org.jetbrains.kotlin:kotlin-stdlib 2.2.20 -> 2.2.21
com.google.devtools.ksp:symbol-processing-gradle-plugin 2.2.20-2.0.4 -> 2.2.21-2.0.4
dev.inmo:micro_utils 0.26.6 -> 0.26.8
dev.inmo:tgbotapi 30.0.0 -> 30.0.2
com.gradleup.nmcp:nmcp-aggregation 1.2.0 -> 1.3.0
2025-12-17 14:22:04 +06:00
e356abc373 start 10.10.0 2025-12-17 14:15:13 +06:00
fdff6c7178 Merge pull request #119 from InsanusMokrassar/10.9.0
10.9.0
2025-10-21 23:13:32 +06:00
636614e4e3 revert sqlite 2025-10-21 23:13:22 +06:00
9747bcd79d update dependencies 2025-10-21 23:12:35 +06:00
f8b7e261f4 start 10.9.0 2025-10-21 23:03:43 +06:00
0a5272b1c8 Merge pull request #118 from InsanusMokrassar/10.8.0
10.8.0
2025-09-04 17:31:52 +06:00
214403ee88 update dependencies 2025-09-04 17:30:46 +06:00
c19a4bbcf9 start 10.8.0 2025-09-04 17:22:51 +06:00
58ba7c1e32 update dependencies 2025-08-04 13:33:02 +06:00
431b1bf1f2 start 10.7.0 2025-08-04 13:19:26 +06:00
ad23cc9202 Update github_release.gradle 2025-06-27 10:03:30 +06:00
e9bf2dfc64 Update github_release.gradle 2025-06-27 09:57:22 +06:00
61ea5e93b3 Merge pull request #115 from InsanusMokrassar/10.6.0
10.6.0
2025-06-27 09:36:26 +06:00
4 changed files with 50 additions and 12 deletions

View File

@@ -1,5 +1,36 @@
# Changelog
## 10.10.0
* `Versions`:
* `kotlin`: `2.2.21`
* `microutils`: `0.26.8`
* `tgbotapi`: `30.0.2`
## 10.9.0
* `Versions`:
* `kotlin`: `2.2.20`
* `microutils`: `0.26.6`
* `tgbotapi`: `30.0.0`
* `koin`: `4.1.1`
## 10.8.0
* `Versions`:
* `kotlin`: `2.2.10`
* `microutils`: `0.26.3`
* `tgbotapi`: `28.0.1`
## 10.7.0
* `Versions`:
* `kotlin`: `2.2.0`
* `serialization`: `1.9.0`
* `microutils`: `0.26.2`
* `tgbotapi`: `27.1.1`
* `koin`: `4.1.0`
## 10.6.0
* `Versions`:

View File

@@ -11,12 +11,19 @@ private String getCurrentVersionChangelog() {
return changelogDataOS.toString().trim()
}
if (new File(projectDir, "secret.gradle").exists()) {
apply from: './secret.gradle'
def githubTokenVariableName = "GITHUB_RELEASE_TOKEN"
def githubTokenVariableFromEnv = System.getenv(githubTokenVariableName)
def secretFile = new File(projectDir, "secret.gradle")
if (secretFile.exists() || project.hasProperty(githubTokenVariableName) || (githubTokenVariableFromEnv != "" && githubTokenVariableFromEnv != null)) {
if (secretFile.exists()) {
apply from: './secret.gradle'
}
apply plugin: "com.github.breadmoirai.github-release"
def githubReleaseToken = project.hasProperty(githubTokenVariableName) ? project.property(githubTokenVariableName).toString() : githubTokenVariableFromEnv
githubRelease {
token "${project.property('GITHUB_RELEASE_TOKEN')}"
token githubReleaseToken
releaseAssets.from('bot/build/distributions')

View File

@@ -5,4 +5,4 @@ kotlin.js.generate.externals=true
kotlin.incremental=true
group=dev.inmo
version=10.6.0
version=10.10.0

View File

@@ -1,24 +1,24 @@
[versions]
kt = "2.1.20"
kt-serialization = "1.8.1"
kt = "2.2.21"
kt-serialization = "1.9.0"
kt-coroutines = "1.10.2"
microutils = "0.25.8"
tgbotapi = "26.0.0"
microutils = "0.26.8"
tgbotapi = "30.0.2"
ksp = "2.1.20-1.0.31"
ksp = "2.3.2"
jb-exposed = "0.61.0"
jb-dokka = "2.0.0"
jb-dokka = "2.1.0"
sqlite = "3.50.1.0"
gh-release = "2.5.2"
koin = "4.0.4"
koin = "4.1.1"
nmcp = "0.2.1"
nmcp = "1.3.0"
[libraries]