Skip to content

Commit 4967e97

Browse files
committed
Version bump to 0.3.2 snapshot to 0.3.3-SNAPSHOT
1 parent 5e6ab9c commit 4967e97

File tree

3 files changed

+8
-28
lines changed

3 files changed

+8
-28
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
## Descriptive changelog
22
(All dates are DD.MM.YYYY)
33

4-
##### 0.3.2-SNAPSHOT
4+
5+
##### 0.3.3-SNAPSHOT
6+
7+
##### 0.3.2 - 5.9.2021
58
- Added kotlinx serialization support library
69
- Enabled gradle dependencies verification (bootstrapped)
710
- Fix for losing decimal mode when using unary minus (#184)

README.md

Lines changed: 3 additions & 26 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.1")
31+
implementation("com.ionspin.kotlin:bignum:0.3.2")
3232
```
3333

3434
#### Snapshot builds
@@ -38,38 +38,15 @@ repositories {
3838
url = uri("https://oss.sonatype.org/content/repositories/snapshots")
3939
}
4040
}
41-
implementation("com.ionspin.kotlin:bignum:0.3.2-SNAPSHOT")
42-
43-
```
44-
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")
41+
implementation("com.ionspin.kotlin:bignum:0.3.3-SNAPSHOT")
6542

6643
```
6744

6845
## Serialization
6946

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

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

7552

buildSrc/src/main/kotlin/Deps.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ object Versions {
2424
val dokkaPlugin = "1.5.0"
2525
}
2626

27-
val projectVersion = "0.3.2-SNAPSHOT"
27+
val projectVersion = "0.3.3-SNAPSHOT"
2828

2929
object Deps {
3030

0 commit comments

Comments
 (0)