Skip to content

Commit

Permalink
Update version, README and CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
ionspin committed Jul 14, 2024
1 parent b5d44c3 commit 727c327
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,13 @@

##### 0.3.10-SNAPSHOT - current snapshot
- Fix for #280, return byte array containing zero instead of empty array when big integer is zero.
- Fix for #291, override hashCode as well as equals in ModularBigInteger
- Fix for #291, override hashCode as well as equals in ModularBigInteger.
- Fix for #292, negate for Modular big intiger did nothing.
- Bump to kotlin 2.0.0
- Add github action for pull request build and test.
- Many performance improvements in #299, #300, #301 #302, and many thanks to @glureau for implementing them!
- Fix for #306, mod inverse was invalid.
- Targets and sourcesets cleanup , thanks to @caffeine-mgn

##### 0.3.9 - 28.1.2024
- Bump to kotlin 1.9.21
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ expect `a` to be `1.2299999885799495E-13`.

#### Gradle
```kotlin
implementation("com.ionspin.kotlin:bignum:0.3.9")
implementation("com.ionspin.kotlin:bignum:0.3.10")
```

#### Snapshot builds
Expand All @@ -46,7 +46,7 @@ repositories {
url = uri("https://oss.sonatype.org/content/repositories/snapshots")
}
}
implementation("com.ionspin.kotlin:bignum:0.3.10-SNAPSHOT")
implementation("com.ionspin.kotlin:bignum:0.3.11-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.9.10"
}

val projectVersion = "0.3.10-SNAPSHOT"
val projectVersion = "0.3.10"

object Deps {

Expand Down

0 comments on commit 727c327

Please sign in to comment.