Skip to content

Commit

Permalink
Update readme and changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
ionspin committed May 10, 2021
1 parent 09b926d commit 7c9c1eb
Showing 1 changed file with 27 additions and 2 deletions.
29 changes: 27 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ and bug-fixing.

#### Gradle
```kotlin
implementation("com.ionspin.kotlin:bignum:0.3.0")
implementation("com.ionspin.kotlin:bignum:0.3.1")
```

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

```

#### 1.4.32 Kotlin based release

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
of the library built with Kotlin 1.4.32 as well for the time being.

**Stable:**

```kotlin
implementation("com.ionspin.kotlin:bignum:0.3.1-1.4.32")
```

**Snapshot**

```kotlin
repositories {
maven {
url = uri("https://oss.sonatype.org/content/repositories/snapshots")
}
}
implementation("com.ionspin.kotlin:bignum:0.3.2-1.4.32-SNAPSHOT")

```



## Usage

### Integers
Expand Down

0 comments on commit 7c9c1eb

Please sign in to comment.