Skip to content

Commit

Permalink
Bump snapshot, update readme and changelog for 0.3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
ionspin committed Aug 6, 2022
1 parent fc541c3 commit d312473
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
7 changes: 5 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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")

```

Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/Deps.kt
Original file line number Diff line number Diff line change
Expand Up @@ -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 {

Expand Down

0 comments on commit d312473

Please sign in to comment.