From 4967e97c81dc4fa386372530248383db4bd242c1 Mon Sep 17 00:00:00 2001 From: Ugljesa Jovanovic Date: Sun, 5 Sep 2021 22:18:39 +0200 Subject: [PATCH] Version bump to 0.3.2 snapshot to 0.3.3-SNAPSHOT --- CHANGELOG.md | 5 ++++- README.md | 29 +++-------------------------- buildSrc/src/main/kotlin/Deps.kt | 2 +- 3 files changed, 8 insertions(+), 28 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index da2e7a3b..9a6bb4ba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,10 @@ ## Descriptive changelog (All dates are DD.MM.YYYY) -##### 0.3.2-SNAPSHOT + +##### 0.3.3-SNAPSHOT + +##### 0.3.2 - 5.9.2021 - Added kotlinx serialization support library - Enabled gradle dependencies verification (bootstrapped) - Fix for losing decimal mode when using unary minus (#184) diff --git a/README.md b/README.md index a52de866..8472ace5 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ and bug-fixing. #### Gradle ```kotlin -implementation("com.ionspin.kotlin:bignum:0.3.1") +implementation("com.ionspin.kotlin:bignum:0.3.2") ``` #### Snapshot builds @@ -38,30 +38,7 @@ repositories { url = uri("https://oss.sonatype.org/content/repositories/snapshots") } } -implementation("com.ionspin.kotlin:bignum:0.3.2-SNAPSHOT") - -``` - -#### 1.4.32 Kotlin based release - -Because there is a problem using unsigned integers when an importing project is using Kotlin 1.4.32 and the library is based on kotlin 1.5.0 I'm providing a version -of the library built with Kotlin 1.4.32 as well for the time being. - -**Stable:** - -```kotlin -implementation("com.ionspin.kotlin:bignum:0.3.1-1.4.32") -``` - -**Snapshot** - -```kotlin -repositories { - maven { - url = uri("https://oss.sonatype.org/content/repositories/snapshots") - } -} -implementation("com.ionspin.kotlin:bignum:0.3.2-1.4.32-SNAPSHOT") +implementation("com.ionspin.kotlin:bignum:0.3.3-SNAPSHOT") ``` @@ -69,7 +46,7 @@ implementation("com.ionspin.kotlin:bignum:0.3.2-1.4.32-SNAPSHOT") Serializers for KotlinX Serializtion library are provided, see more here [kotlinx serialization support](bignum-serialization-kotlinx/README.md) -Note that because kotlinx doesn't support linux arm targets as well as MinGW x86, serialization support library doesn't either. +Note that because kotlinx doesn't support linux ARM targets as well as MinGW x86, serialization support library doesn't either. Additionally, because of a bug when building serialization support library only JS IR variant is provided. diff --git a/buildSrc/src/main/kotlin/Deps.kt b/buildSrc/src/main/kotlin/Deps.kt index 2f250a0b..42cc0740 100644 --- a/buildSrc/src/main/kotlin/Deps.kt +++ b/buildSrc/src/main/kotlin/Deps.kt @@ -24,7 +24,7 @@ object Versions { val dokkaPlugin = "1.5.0" } -val projectVersion = "0.3.2-SNAPSHOT" +val projectVersion = "0.3.3-SNAPSHOT" object Deps {