Skip to content

Commit

Permalink
Version bump, updated changelog and readme
Browse files Browse the repository at this point in the history
  • Loading branch information
ionspin committed Feb 5, 2021
1 parent 69d4f6e commit 6791a62
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
## Descriptive changelog
(All dates are DD.MM.YYYY)
##### 0.2.4 - SNAPSHOT
##### 0.2.5 - SNAPSHOT

##### 0.2.4 - 5.2.2021
- Bump to kotlin 1.4.30
- Fix invalid to string when big decimal is zero (#148)
- Fix xor test which was previously testing bit shifting instead of xor (#147)
- Fix biginteger xor operands magnitude array length mismatch (#144)
- Fix biginteger bitwise operations sign (#142)
- Added (back) support for legacy js target (#138)
##### 0.2.3 - 28.11.2020
- Bump to Kotlin 1.4.20
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.3")
implementation("com.ionspin.kotlin:bignum:0.2.4")
```

#### 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.4-SNAPSHOT ")
implementation("com.ionspin.kotlin:bignum:0.2.5-SNAPSHOT ")

```

Expand Down
1 change: 1 addition & 0 deletions THANKS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
Special thanks to people for contributing to the library:

- Steven K Olson (@skolson)
- Or Noyman (@fullkomun)
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.4-SNAPSHOT"
version = "0.2.5-SNAPSHOT"

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

Expand Down

0 comments on commit 6791a62

Please sign in to comment.