Skip to content

Commit 493aad6

Browse files
committed
Prepare changelog and readme for 0.3.2
1 parent 1233399 commit 493aad6

File tree

3 files changed

+13
-4
lines changed

3 files changed

+13
-4
lines changed

CHANGELOG.md

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

3+
## 0.3.2
4+
5+
#### Features
6+
7+
- Update Kotlin dependency to 1.6.0 and remove `ExperimentalTime` from API involving `Duration` which became stable ([#156](https://github.com/Kotlin/kotlinx-datetime/issues/156))
8+
- Add an explicit `module-info` descriptor to JVM variant of the library ([#135](https://github.com/Kotlin/kotlinx-datetime/pull/135))
9+
- `kotlinx.datetime.Instant` conversions to and from JS `Date` ([#170](https://github.com/Kotlin/kotlinx-datetime/issues/170)).
10+
11+
312
## 0.3.1
413

514
#### Fixes

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.1")
299+
implementation("org.jetbrains.kotlinx:kotlinx-datetime:0.3.2")
300300
}
301301
}
302302
}
@@ -307,7 +307,7 @@ kotlin {
307307

308308
```groovy
309309
dependencies {
310-
implementation("org.jetbrains.kotlinx:kotlinx-datetime:0.3.1")
310+
implementation("org.jetbrains.kotlinx:kotlinx-datetime:0.3.2")
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.1</version>
350+
<version>0.3.2</version>
351351
</dependency>
352352
```
353353

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ org.gradle.jvmargs=-Xmx1G -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
22
org.gradle.java.installations.fromEnv=JDK_8
33

44
group=org.jetbrains.kotlinx
5-
version=0.3.1
5+
version=0.3.2
66
versionSuffix=SNAPSHOT
77

88
kotlinVersion=1.6.0

0 commit comments

Comments
 (0)