diff --git a/README.MD b/README.MD index c616946..502d816 100644 --- a/README.MD +++ b/README.MD @@ -26,7 +26,7 @@ Timeshape is published on Maven Central. The coordinates are the following: net.iakovlev timeshape - 2024a.23 + 2024a.24 ``` @@ -38,7 +38,7 @@ but now it's brought back. Android developers should add Timeshape to the app level gradle.build as follows: ```gradle -implementation('net.iakovlev:timeshape:2024a.23') { +implementation('net.iakovlev:timeshape:2024a.24') { // Exclude standard compression library exclude group: 'com.github.luben', module: 'zstd-jni' } diff --git a/build.sbt b/build.sbt index d9c8a80..07eddf1 100644 --- a/build.sbt +++ b/build.sbt @@ -2,8 +2,8 @@ import scala.sys.process._ import _root_.io.circe.parser._ val dataVersion = "2024a" -val softwareVersion = "24" -val snapshotRelease = false +val softwareVersion = "25" +val snapshotRelease = true val releaseType = if (snapshotRelease) "-SNAPSHOT" else ""