Compare commits

...

9 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
7fbea3c8b6 update kotlin, gradle and changelog :) 2026-01-24 16:09:07 +06:00
0417cd117a start 1.6.0 2026-01-24 15:55:45 +06:00
2015dc5083 Merge pull request #112 from InsanusMokrassar/1.5.2
1.5.2
2025-11-12 17:08:27 +06:00
5 changed files with 23 additions and 9 deletions

View File

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

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.5.2
android_code_version=39
version=1.6.1
android_code_version=41

View File

@@ -1,15 +1,15 @@
[versions]
kotlin = "2.2.21"
kotlin = "2.3.20"
kotlin-gradle-plugin = "8.12.+"
nmcp = "1.2.0"
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"

View File

@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-9.3.0-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists