mirror of
https://github.com/InsanusMokrassar/PlaguBot.git
synced 2025-12-05 22:06:02 +00:00
Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 58ba7c1e32 | |||
| 431b1bf1f2 | |||
| ad23cc9202 | |||
| e9bf2dfc64 | |||
| 61ea5e93b3 |
@@ -1,5 +1,14 @@
|
||||
# Changelog
|
||||
|
||||
## 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`:
|
||||
|
||||
@@ -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')
|
||||
|
||||
|
||||
@@ -5,4 +5,4 @@ kotlin.js.generate.externals=true
|
||||
kotlin.incremental=true
|
||||
|
||||
group=dev.inmo
|
||||
version=10.6.0
|
||||
version=10.7.0
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
[versions]
|
||||
|
||||
kt = "2.1.20"
|
||||
kt-serialization = "1.8.1"
|
||||
kt = "2.2.0"
|
||||
kt-serialization = "1.9.0"
|
||||
kt-coroutines = "1.10.2"
|
||||
|
||||
microutils = "0.25.8"
|
||||
tgbotapi = "26.0.0"
|
||||
microutils = "0.26.2"
|
||||
tgbotapi = "27.1.1"
|
||||
|
||||
ksp = "2.1.20-1.0.31"
|
||||
ksp = "2.2.0-2.0.2"
|
||||
|
||||
jb-exposed = "0.61.0"
|
||||
jb-dokka = "2.0.0"
|
||||
@@ -16,9 +16,9 @@ sqlite = "3.50.1.0"
|
||||
|
||||
gh-release = "2.5.2"
|
||||
|
||||
koin = "4.0.4"
|
||||
koin = "4.1.0"
|
||||
|
||||
nmcp = "0.2.1"
|
||||
nmcp = "1.0.2"
|
||||
|
||||
[libraries]
|
||||
|
||||
|
||||
Reference in New Issue
Block a user