Compare commits

...

6 Commits

Author SHA1 Message Date
d37630c1d4 update dependencies
org.jetbrains.kotlin:kotlin-stdlib 2.3.0 -> 2.3.20
org.jetbrains.dokka:dokka-gradle-plugin 2.1.0 -> 2.2.0
com.gradleup.nmcp 1.2.1 -> 1.4.4
junit:junit 4.12 -> 4.13.2
2026-04-18 19:58:37 +06:00
e0e97292aa start 1.6.1 2026-04-18 19:49:38 +06:00
22b22c48f4 small fix in github_publishing 2026-01-24 19:11:41 +06:00
52f18b234d revert nmcp version 2026-01-24 18:07:22 +06:00
4d9708b53f Add allowEmptyAggregation to build.gradle 2026-01-24 16:29:07 +06:00
91f3516c8f Merge pull request #118 from InsanusMokrassar/1.6.0
1.6.0
2026-01-24 16:09:54 +06:00
4 changed files with 18 additions and 8 deletions

View File

@@ -1,5 +1,9 @@
# Changelog
## 1.6.1
* `Kotlin`: `2.3.20`
## 1.6.0
* `Kotlin`: `2.3.0`

View File

@@ -1,9 +1,15 @@
interface InjectedExecOps {
@Inject //@javax.inject.Inject
ExecOperations getExecOps()
}
private String getCurrentVersionChangelog() {
OutputStream changelogDataOS = new ByteArrayOutputStream()
exec {
def injected = project.objects.newInstance(InjectedExecOps)
injected.execOps.exec {
commandLine 'chmod', "+x", './changelog_parser.sh'
}
exec {
injected.execOps.exec {
standardOutput = changelogDataOS
commandLine './changelog_parser.sh', "${project.version}", 'CHANGELOG.md'
}

View File

@@ -10,5 +10,5 @@ org.gradle.jvmargs=-Xmx512m
# Project data
group=dev.inmo
version=1.6.0
android_code_version=40
version=1.6.1
android_code_version=41

View File

@@ -1,15 +1,15 @@
[versions]
kotlin = "2.3.0"
kotlin = "2.3.20"
kotlin-gradle-plugin = "8.12.+"
nmcp = "1.4.3"
nmcp = "1.4.4"
versions = "0.53.0"
dokka = "2.1.0"
dokka = "2.2.0"
dexcount = "4.0.0"
junit_version = "4.12"
junit_version = "4.13.2"
test_ext_junit_version = "1.3.0"
espresso_core = "3.7.0"