Skip to content

Commit

Permalink
Release 0.7.3 (#173)
Browse files Browse the repository at this point in the history
Build Updates:
* Update artifacts.gradle - version 0.7.3
* Update gradle-wrapper.properties - Gradle 8.6
* Update dependencies.gradle - Kotlinx Coroutines 1.8.0, JUnit 5.10.2
* Bump org.jetbrains.dokka from 1.9.10 to 1.9.20 (#171)
* Bump org.jetbrains.kotlin:kotlin-gradle-plugin from 1.9.22 to 1.9.23 (#172)
* Update settings.gradle

Documentation:
* Update README.md
  • Loading branch information
DK96-OS committed Mar 8, 2024
1 parent ad0e61b commit e9c816d
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Software Tools for Applied Mathematics are categorized into these modules:
### Import in Gradle Build Script
Choose The Modules that you want to import:

def mt_version = "0.7.2"
def mt_version = "0.7.3"
dependencies {
implementation 'io.github.dk96-os:arrays:$mt_version'
implementation 'io.github.dk96-os:arrays-ktx:$mt_version'
Expand Down
2 changes: 1 addition & 1 deletion artifacts.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
def commonArtifactVersion = "0.7.2"
def commonArtifactVersion = "0.7.3"
ext {
artifactVersions = [
arrays : commonArtifactVersion,
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ buildscript {
google()
}
dependencies {
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.22")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.23")
}
}

Expand Down
6 changes: 3 additions & 3 deletions dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ ext {
find_bugs = "com.google.code.findbugs:jsr305:3.0.2"

junit5 = [
bom : "org.junit:junit-bom:5.10.0",
bom : "org.junit:junit-bom:5.10.2",
api : "org.junit.jupiter:junit-jupiter-api",
params : "org.junit.jupiter:junit-jupiter-params",
engine : "org.junit.jupiter:junit-jupiter-engine",
]

coroutines = [
core : "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3",
test : "org.jetbrains.kotlinx:kotlinx-coroutines-test:1.7.3",
core : "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0",
test : "org.jetbrains.kotlinx:kotlinx-coroutines-test:1.8.0",
]
}
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
4 changes: 2 additions & 2 deletions settings.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
pluginManagement {
plugins {
id "org.jetbrains.kotlin.jvm" version "1.9.22"
id "org.jetbrains.dokka" version "1.9.10"
id "org.jetbrains.kotlin.jvm" version "1.9.23"
id "org.jetbrains.dokka" version "1.9.20"
}
repositories {
google()
Expand Down

0 comments on commit e9c816d

Please sign in to comment.