Skip to content

Commit

Permalink
Bump kotlin to 1.4.20, release 0.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
ionspin committed Nov 28, 2020
1 parent 1e95a00 commit a70cf93
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 6 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
## Descriptive changelog
(All dates are DD.MM.YYYY)
##### 0.2.3 - SNAPSHOT
##### 0.2.4 - SNAPSHOT

##### 0.2.3 - 28.11.2020
- Bump to Kotlin 1.4.20
- Fix for invalid exponent rounding and string representation (#139)
- Returned mingwx86 target (#137)
- Fixed #134
- Fixed #130 Conversion to double off by power of 10
- Fixed #132 BigDecimal narrow functions toFloat() and toDouble, with exactRequired = false sometimes wrongly fail
- Fixed floatValue and doubleValue narrowing functions (pull request #135)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ and bug-fixing.

#### Gradle
```kotlin
implementation("com.ionspin.kotlin:bignum:0.2.2")
implementation("com.ionspin.kotlin:bignum:0.2.3")
```

#### Snapshot builds
Expand All @@ -36,7 +36,7 @@ repositories {
url = uri("https://oss.sonatype.org/content/repositories/snapshots")
}
}
implementation("com.ionspin.kotlin:bignum:0.2.3-SNAPSHOT ")
implementation("com.ionspin.kotlin:bignum:0.2.4-SNAPSHOT ")

```

Expand Down
2 changes: 1 addition & 1 deletion bignum/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ repositories {
jcenter()
}
group = "com.ionspin.kotlin"
version = "0.2.3-SNAPSHOT"
version = "0.2.4-SNAPSHOT"

val ideaActive = System.getProperty("idea.active") == "true"

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 @@ -17,7 +17,7 @@

object Versions {
val kotlinCoroutines = "1.3.9"
val kotlin = "1.4.10"
val kotlin = "1.4.20"
val kotlinSerialization = "1.0.0"
val nodePlugin = "1.3.0"
val dokkaPlugin = "1.4.0-rc"
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@
org.gradle.parallel=true
kotlin.code.style=official
kotlin.js.compiler=ir
org.gradle.jvmargs=-Xmx3g
org.gradle.jvmargs=-Xmx3g

0 comments on commit a70cf93

Please sign in to comment.