You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: CHANGES.md
+5-5
Original file line number
Diff line number
Diff line change
@@ -83,7 +83,7 @@ Note that this is a full changelog relative to the 1.5.2 version. Changelog rela
83
83
* Support of deprecated `CommonPool` is removed.
84
84
*`@ExperimentalTime` is no longer needed for methods that use `Duration` (#3041).
85
85
* JDK 1.6 is no longer required for building the project (#3043).
86
-
* New version of Dokka is used, fixing the memory leak when building the coroutines and providing brand new reference visuals (https://kotlin.github.io/kotlinx.coroutines/) (#3051, #3054).
86
+
* New version of Dokka is used, fixing the memory leak when building the coroutines and providing brand new reference visuals (https://kotlinlang.org/api/kotlinx.coroutines/) (#3051, #3054).
87
87
88
88
### Changelog relative to version 1.6.0-RC3
89
89
@@ -106,7 +106,7 @@ Note that this is a full changelog relative to the 1.5.2 version. Changelog rela
106
106
*`SendChannel.trySendBlocking` is now available on Kotlin/Native (#3064).
107
107
* Fixed the bug due to which `Dispatchers.Main` was not used for `delay` and `withTimeout` (#3046).
108
108
* JDK 1.6 is no longer required for building the project (#3043).
109
-
* New version of Dokka is used, fixing the memory leak when building the coroutines and providing brand new reference visuals (https://kotlin.github.io/kotlinx.coroutines/) (#3051, #3054).
109
+
* New version of Dokka is used, fixing the memory leak when building the coroutines and providing brand new reference visuals (https://kotlinlang.org/api/kotlinx.coroutines/) (#3051, #3054).
110
110
111
111
## Version 1.6.0-RC
112
112
@@ -519,7 +519,7 @@ Gradle version 5.3 or later to use this version of kotlinx.coroutines in your Ko
519
519
520
520
### Flow
521
521
522
-
This version is the first stable release with [`Flow`](https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines.flow/-flow/index.html) API.
522
+
This version is the first stable release with [`Flow`](https://kotlinlang.org/api/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines.flow/-flow/index.html) API.
523
523
524
524
All `Flow` API not marked with `@FlowPreview` or `@ExperimentalCoroutinesApi` annotations are stable and here to stay.
525
525
Flow declarations marked with `@ExperimentalCoroutinesApi` have [the same guarantees](/docs/topics/compatibility.md#experimental-api) as regular experimental API.
@@ -848,9 +848,9 @@ Visible consequences of include more robust exception handling for large corouti
848
848
* All coroutine builders are now extensions on `CoroutineScope` and inherit its `coroutineContext`. Standalone builders are deprecated.
849
849
* As a consequence, all nested coroutines launched via builders now automatically establish parent-child relationship and inherit `CoroutineDispatcher`.
850
850
* All coroutine builders use `Dispatchers.Default` by default if `CoroutineInterceptor` is not present in their context.
851
-
*[CoroutineScope](https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/-coroutine-scope/) became the first-class citizen in `kolinx.coroutines`.
851
+
*[CoroutineScope](https://kotlinlang.org/api/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/-coroutine-scope/index.html) became the first-class citizen in `kolinx.coroutines`.
852
852
*`withContext``block` argument has `CoroutineScope` as a receiver.
853
-
*[GlobalScope](https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/-global-scope/) is introduced to simplify migration to new API and to launch global-level coroutines.
853
+
*[GlobalScope](https://kotlinlang.org/api/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/-global-scope/index.html) is introduced to simplify migration to new API and to launch global-level coroutines.
854
854
*`currentScope` and `coroutineScope` builders are introduced to extract and provide `CoroutineScope`.
855
855
* Factory methods to create `CoroutineScope` from `CoroutineContext` are introduced.
856
856
*`CoroutineScope.isActive` became an extension property.
Copy file name to clipboardexpand all lines: RELEASE.md
+2-1
Original file line number
Diff line number
Diff line change
@@ -63,7 +63,8 @@ To release a new `<version>` of `kotlinx-coroutines`:
63
63
* Cut & paste lines from [`CHANGES.md`](CHANGES.md) into description.
64
64
65
65
4. Build and publish the documentation for the web-site: <br>
66
-
`site/deploy.sh <version> push`
66
+
* Set new value for [`kotlinx.coroutines.release.tag`](https://buildserver.labs.intellij.net/admin/editProject.html?projectId=Kotlin_KotlinSites_Builds_KotlinlangOrg_LibrariesAPIs&tab=projectParams)
67
+
* And run deploy [configuration](https://buildserver.labs.intellij.net/buildConfiguration/Kotlin_KotlinSites_Builds_KotlinlangOrg_KotlinCoroutinesApi?branch=%3Cdefault%3E&buildTypeTab=overview&mode=builds)
67
68
68
69
5. Announce the new release in [Slack](https://kotlinlang.slack.com)
0 commit comments