Skip to content

Commit

Permalink
Version bump to 0.3.2 snapshot to 0.3.3-SNAPSHOT
Browse files Browse the repository at this point in the history
  • Loading branch information
ionspin committed Sep 5, 2021
1 parent 5e6ab9c commit 4967e97
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 28 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
## Descriptive changelog
(All dates are DD.MM.YYYY)

##### 0.3.2-SNAPSHOT

##### 0.3.3-SNAPSHOT

##### 0.3.2 - 5.9.2021
- Added kotlinx serialization support library
- Enabled gradle dependencies verification (bootstrapped)
- Fix for losing decimal mode when using unary minus (#184)
Expand Down
29 changes: 3 additions & 26 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.1")
implementation("com.ionspin.kotlin:bignum:0.3.2")
```

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

```

## Serialization

Serializers for KotlinX Serializtion library are provided, see more here [kotlinx serialization support](bignum-serialization-kotlinx/README.md)

Note that because kotlinx doesn't support linux arm targets as well as MinGW x86, serialization support library doesn't either.
Note that because kotlinx doesn't support linux ARM targets as well as MinGW x86, serialization support library doesn't either.
Additionally, because of a bug when building serialization support library only JS IR variant is provided.


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 @@ -24,7 +24,7 @@ object Versions {
val dokkaPlugin = "1.5.0"
}

val projectVersion = "0.3.2-SNAPSHOT"
val projectVersion = "0.3.3-SNAPSHOT"

object Deps {

Expand Down

0 comments on commit 4967e97

Please sign in to comment.