From 9d7cc4493ae34b13d1eb070d13f3635082c5a6b0 Mon Sep 17 00:00:00 2001 From: Roman Iakovlev Date: Fri, 4 Oct 2024 17:51:49 +0200 Subject: [PATCH 1/2] Update README.MD for release 2024a.24 --- README.MD | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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' } From 4d874d758edb36054ddce835c1f3257b2dbb4365 Mon Sep 17 00:00:00 2001 From: Roman Iakovlev Date: Fri, 4 Oct 2024 17:53:25 +0200 Subject: [PATCH 2/2] Set version to next snapshot --- build.sbt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 ""