Skip to content

Commit 7c9c1eb

Browse files
committed
Update readme and changelog
1 parent 09b926d commit 7c9c1eb

File tree

1 file changed

+27
-2
lines changed

1 file changed

+27
-2
lines changed

README.md

Lines changed: 27 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ and bug-fixing.
2828

2929
#### Gradle
3030
```kotlin
31-
implementation("com.ionspin.kotlin:bignum:0.3.0")
31+
implementation("com.ionspin.kotlin:bignum:0.3.1")
3232
```
3333

3434
#### Snapshot builds
@@ -38,10 +38,35 @@ repositories {
3838
url = uri("https://oss.sonatype.org/content/repositories/snapshots")
3939
}
4040
}
41-
implementation("com.ionspin.kotlin:bignum:0.3.1-SNAPSHOT")
41+
implementation("com.ionspin.kotlin:bignum:0.3.2-SNAPSHOT")
4242

4343
```
4444

45+
#### 1.4.32 Kotlin based release
46+
47+
Because there is a problem using unsigned integers when an importing project is using Kotlin 1.4.32 and the library is based on kotlin 1.5.0 I'm providing a version
48+
of the library built with Kotlin 1.4.32 as well for the time being.
49+
50+
**Stable:**
51+
52+
```kotlin
53+
implementation("com.ionspin.kotlin:bignum:0.3.1-1.4.32")
54+
```
55+
56+
**Snapshot**
57+
58+
```kotlin
59+
repositories {
60+
maven {
61+
url = uri("https://oss.sonatype.org/content/repositories/snapshots")
62+
}
63+
}
64+
implementation("com.ionspin.kotlin:bignum:0.3.2-1.4.32-SNAPSHOT")
65+
66+
```
67+
68+
69+
4570
## Usage
4671

4772
### Integers

0 commit comments

Comments
 (0)