File tree Expand file tree Collapse file tree 3 files changed +8
-28
lines changed Expand file tree Collapse file tree 3 files changed +8
-28
lines changed Original file line number Diff line number Diff line change 1
1
## Descriptive changelog
2
2
(All dates are DD.MM.YYYY)
3
3
4
- ##### 0.3.2-SNAPSHOT
4
+
5
+ ##### 0.3.3-SNAPSHOT
6
+
7
+ ##### 0.3.2 - 5.9.2021
5
8
- Added kotlinx serialization support library
6
9
- Enabled gradle dependencies verification (bootstrapped)
7
10
- Fix for losing decimal mode when using unary minus (#184 )
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ and bug-fixing.
28
28
29
29
#### Gradle
30
30
``` kotlin
31
- implementation(" com.ionspin.kotlin:bignum:0.3.1 " )
31
+ implementation(" com.ionspin.kotlin:bignum:0.3.2 " )
32
32
```
33
33
34
34
#### Snapshot builds
@@ -38,38 +38,15 @@ repositories {
38
38
url = uri(" https://oss.sonatype.org/content/repositories/snapshots" )
39
39
}
40
40
}
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" )
65
42
66
43
```
67
44
68
45
## Serialization
69
46
70
47
Serializers for KotlinX Serializtion library are provided, see more here [ kotlinx serialization support] ( bignum-serialization-kotlinx/README.md )
71
48
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.
73
50
Additionally, because of a bug when building serialization support library only JS IR variant is provided.
74
51
75
52
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ object Versions {
24
24
val dokkaPlugin = " 1.5.0"
25
25
}
26
26
27
- val projectVersion = " 0.3.2 -SNAPSHOT"
27
+ val projectVersion = " 0.3.3 -SNAPSHOT"
28
28
29
29
object Deps {
30
30
You can’t perform that action at this time.
0 commit comments