Compare commits

...

8 Commits

5 changed files with 17 additions and 7 deletions

View File

@@ -1,5 +1,9 @@
# Changelog
## 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.0
android_code_version=40

View File

@@ -1,9 +1,9 @@
[versions]
kotlin = "2.2.21"
kotlin = "2.3.10"
kotlin-gradle-plugin = "8.12.+"
nmcp = "1.2.0"
nmcp = "1.2.1"
versions = "0.53.0"
dokka = "2.1.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