From 7c9c1eb3eb9c4249f45882e6482b4ec4c6691ef0 Mon Sep 17 00:00:00 2001 From: Ugljesa Jovanovic Date: Mon, 10 May 2021 23:28:37 +0200 Subject: [PATCH] Update readme and changelog --- README.md | 29 +++++++++++++++++++++++++++-- 1 file changed, 27 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index babfcf14..fa02772e 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ and bug-fixing. #### Gradle ```kotlin -implementation("com.ionspin.kotlin:bignum:0.3.0") +implementation("com.ionspin.kotlin:bignum:0.3.1") ``` #### Snapshot builds @@ -38,10 +38,35 @@ repositories { url = uri("https://oss.sonatype.org/content/repositories/snapshots") } } -implementation("com.ionspin.kotlin:bignum:0.3.1-SNAPSHOT") +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") + +``` + + + ## Usage ### Integers