Skip to content

Commit 6d0de86

Browse files
committed
Prepare release 0.3.1
1 parent 03cdf17 commit 6d0de86

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# CHANGELOG
22

3+
## 0.3.1
4+
5+
#### Fixes
6+
7+
- Fixed a crash in desugared code on Android when trying to construct time zones with some specific identifiers ([149](https://github.com/Kotlin/kotlinx-datetime/issues/149))
8+
39
## 0.3.0
410

511
#### Features

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ kotlin {
296296
sourceSets {
297297
commonMain {
298298
dependencies {
299-
implementation("org.jetbrains.kotlinx:kotlinx-datetime:0.3.0")
299+
implementation("org.jetbrains.kotlinx:kotlinx-datetime:0.3.1")
300300
}
301301
}
302302
}
@@ -307,7 +307,7 @@ kotlin {
307307

308308
```groovy
309309
dependencies {
310-
implementation("org.jetbrains.kotlinx:kotlinx-datetime:0.3.0")
310+
implementation("org.jetbrains.kotlinx:kotlinx-datetime:0.3.1")
311311
}
312312
```
313313

@@ -347,7 +347,7 @@ Add a dependency to the `<dependencies>` element. Note that you need to use the
347347
<dependency>
348348
<groupId>org.jetbrains.kotlinx</groupId>
349349
<artifactId>kotlinx-datetime-jvm</artifactId>
350-
<version>0.3.0</version>
350+
<version>0.3.1</version>
351351
</dependency>
352352
```
353353

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
org.gradle.jvmargs=-Xmx1G -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
22

33
group=org.jetbrains.kotlinx
4-
version=0.3.0
4+
version=0.3.1
55
versionSuffix=SNAPSHOT
66

77
kotlinVersion=1.5.30

0 commit comments

Comments
 (0)