Skip to content

Commit 43c0743

Browse files
committed
Rename version 0.25.2 to 0.25.3 (for technical reasons)
1 parent 61abcd2 commit 43c0743

File tree

7 files changed

+11
-10
lines changed

7 files changed

+11
-10
lines changed

CHANGES.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
# Change log for kotlinx.coroutines
22

3-
## Version 0.25.2
3+
## Version 0.25.3
44

55
* Distribution no longer uses multi-version jar which is not supported on Android (see #510).
66
* JS version of the library does not depend on AtomicFu anymore:
77
  All the atomic boxes in JS are fully erased.
8+
* Note, that versions 0.25.1-2 are skipped for technical reasons (they were not fully released).
89

910
## Version 0.25.0
1011

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![official JetBrains project](http://jb.gg/badges/official.svg)](https://confluence.jetbrains.com/display/ALL/JetBrains+on+GitHub)
44
[![GitHub license](https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat)](http://www.apache.org/licenses/LICENSE-2.0)
5-
[![Download](https://api.bintray.com/packages/kotlin/kotlinx/kotlinx.coroutines/images/download.svg?version=0.25.2) ](https://bintray.com/kotlin/kotlinx/kotlinx.coroutines/0.25.2)
5+
[![Download](https://api.bintray.com/packages/kotlin/kotlinx/kotlinx.coroutines/images/download.svg?version=0.25.3) ](https://bintray.com/kotlin/kotlinx/kotlinx.coroutines/0.25.3)
66

77
Library support for Kotlin coroutines with [multiplatform](#multiplatform) support.
88
This is a companion version for Kotlin 1.2.61 release.
@@ -63,7 +63,7 @@ Add dependencies (you can also add other modules that you need):
6363
<dependency>
6464
<groupId>org.jetbrains.kotlinx</groupId>
6565
<artifactId>kotlinx-coroutines-core</artifactId>
66-
<version>0.25.2</version>
66+
<version>0.25.3</version>
6767
</dependency>
6868
```
6969

@@ -80,7 +80,7 @@ And make sure that you use the latest Kotlin version:
8080
Add dependencies (you can also add other modules that you need):
8181

8282
```groovy
83-
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:0.25.2'
83+
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:0.25.3'
8484
```
8585

8686
And make sure that you use the latest Kotlin version:
@@ -113,7 +113,7 @@ Add [`kotlinx-coroutines-android`](ui/kotlinx-coroutines-android)
113113
module as dependency when using `kotlinx.coroutines` on Android:
114114

115115
```groovy
116-
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:0.25.2'
116+
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:0.25.3'
117117
```
118118

119119
This gives you access to Android [UI](https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-android/kotlinx.coroutines.experimental.android/-u-i.html)

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Kotlin
2-
version = 0.25.2-SNAPSHOT
2+
version = 0.25.3-SNAPSHOT
33
group = org.jetbrains.kotlinx
44
kotlin_version=1.2.61
55
kotlin_native_version=0.8.2

native/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ repositories {
4242
}
4343
4444
dependencies {
45-
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core-native:0.25.2'
45+
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core-native:0.25.3'
4646
}
4747
4848
sourceSets {

ui/coroutines-guide-ui.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ Add dependencies on `kotlinx-coroutines-android` module to the `dependencies { .
161161
`app/build.gradle` file:
162162

163163
```groovy
164-
compile "org.jetbrains.kotlinx:kotlinx-coroutines-android:0.25.2"
164+
compile "org.jetbrains.kotlinx:kotlinx-coroutines-android:0.25.3"
165165
```
166166

167167
Coroutines are experimental feature in Kotlin.

ui/kotlinx-coroutines-android/animation-app/gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ org.gradle.jvmargs=-Xmx1536m
1919
kotlin.coroutines=enable
2020

2121
kotlin_version = 1.2.61
22-
coroutines_version = 0.25.2
22+
coroutines_version = 0.25.3
2323

ui/kotlinx-coroutines-android/example-app/gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ org.gradle.jvmargs=-Xmx1536m
1919
kotlin.coroutines=enable
2020

2121
kotlin_version = 1.2.61
22-
coroutines_version = 0.25.2
22+
coroutines_version = 0.25.3
2323

0 commit comments

Comments
 (0)