From d312473449d17349a9d190dfa76011f9c780255b Mon Sep 17 00:00:00 2001 From: Ugljesa Jovanovic Date: Sat, 6 Aug 2022 22:59:00 +0200 Subject: [PATCH] Bump snapshot, update readme and changelog for 0.3.7 --- CHANGELOG.md | 7 +++++-- README.md | 4 ++-- buildSrc/src/main/kotlin/Deps.kt | 2 +- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 73239750..b2569ea5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,11 @@ ## Descriptive changelog (All dates are DD.MM.YYYY) -##### 0.3.7-SNAPSHOT - current snapshot -- Fic for #239, toPlainString which was supposed to return same result as JVM was truncating zeroes when scale was used. +##### 0.3.8-SNAPSHOT - current snapshot + +##### 0.3.7 - 6.8.2022 +- Bump to Kotlin 1.7.10 +- Fix for #239, toPlainString which was supposed to return same result as JVM was truncating zeroes when scale was used. - Fix for #238, wrong exponent in resolved decimal precision was used in divideAndRemainder - Fix for #237, when precision and exponent are same invalid value was returned - Fix for #231, exception incorrectly thrown when using scale (the library was only checking for unlimited precision instead of that and presence of scale) diff --git a/README.md b/README.md index e44c63a4..b887b4f7 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ and bug-fixing. #### Gradle ```kotlin -implementation("com.ionspin.kotlin:bignum:0.3.6") +implementation("com.ionspin.kotlin:bignum:0.3.7") ``` #### Snapshot builds @@ -37,7 +37,7 @@ repositories { url = uri("https://oss.sonatype.org/content/repositories/snapshots") } } -implementation("com.ionspin.kotlin:bignum:0.3.7-SNAPSHOT") +implementation("com.ionspin.kotlin:bignum:0.3.8-SNAPSHOT") ``` diff --git a/buildSrc/src/main/kotlin/Deps.kt b/buildSrc/src/main/kotlin/Deps.kt index 211387dc..b4cbe6e6 100644 --- a/buildSrc/src/main/kotlin/Deps.kt +++ b/buildSrc/src/main/kotlin/Deps.kt @@ -22,7 +22,7 @@ object Versions { val dokkaPlugin = "1.7.10" } -val projectVersion = "0.3.7-SNAPSHOT" +val projectVersion = "0.3.8-SNAPSHOT" object Deps {