File tree 4 files changed +9
-5
lines changed
4 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 20
20
21
21
* Fixed the problem that prevented implementation via delegation for ` Job ` interface (#2423 )
22
22
* Fixed incorrect ProGuard rules that allowed shrinking volatile felds (#1564 )
23
- * Fixed ` await/ ` asDeferred` for ` MinimalState ` implementations in jdk8 module (#2456 )
23
+ * Fixed ` await ` /` asDeferred ` for ` MinimalStage ` implementations in jdk8 module (#2456 )
24
24
* Fixed bug when ` onUndeliveredElement ` wasn't called for unlimited channels (#2435 )
25
25
* Fixed a bug when ` ListenableFuture.isCancelled ` returned from ` asListenableFuture ` could have thrown an exception, thanks to @vadimsemenov (#2421 )
26
26
* Coroutine in ` callbackFlow ` and ` produce ` is properly cancelled when the channel was closed separately (#2506 )
27
27
28
-
29
28
## Version 1.4.2
30
29
31
30
* Fixed ` StackOverflowError ` in ` Job.toString ` when ` Job ` is observed in its intermediate state (#2371 ).
Original file line number Diff line number Diff line change 2
2
3
3
[ ![ official JetBrains project] ( https://jb.gg/badges/official.svg )] ( https://confluence.jetbrains.com/display/ALL/JetBrains+on+GitHub )
4
4
[ ![ GitHub license] ( https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat )] ( https://www.apache.org/licenses/LICENSE-2.0 )
5
- [ ![ Download] ( https://api.bintray.com/packages/kotlin/ kotlinx/kotlinx. coroutines/images/download.svg?version= 1.4.3 ) ] ( https://bintray.com/kotlin/ kotlinx/kotlinx. coroutines/1.4.3 )
5
+ [ ![ Download] ( https://img.shields.io/maven-central/v/org.jetbrains. kotlinx/kotlinx- coroutines-core/ 1.4.3 )] ( https://search.maven.org/artifact/org.jetbrains. kotlinx/kotlinx- coroutines-core /1.4.3/pom )
6
6
[ ![ Kotlin] ( https://img.shields.io/badge/kotlin-1.4.30-blue.svg?logo=kotlin )] ( http://kotlinlang.org )
7
7
[ ![ Slack channel] ( https://img.shields.io/badge/chat-slack-green.svg?logo=slack )] ( https://kotlinlang.slack.com/messages/coroutines/ )
8
8
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ To release new `<version>` of `kotlinx-coroutines`:
34
34
7 . Commit updated files to a new version branch:<br >
35
35
` git commit -a -m "Version <version>" `
36
36
37
- 8 . Push new version into the branch:<br >
37
+ 8 . Push the new version into the branch:<br >
38
38
` git push -u origin version-<version> `
39
39
40
40
9 . Create Pull-Request on GitHub from ` version-<version> ` branch into ` master ` :
Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
2
3
+ #
4
+ # Copyright 2016-2021 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
5
+ #
6
+
3
7
# Abort on first error
4
8
set -e
5
9
@@ -47,7 +51,8 @@ git rm `find . -type f -not -name '*.html' -not -name '.git'` > /dev/null
47
51
echo " Redirecting experimental pages"
48
52
git_add=()
49
53
git_rm=()
50
- for file in ` find . -type f -name ' *.html' ` ; do
54
+ ` find . -type f -name ' *.html' ` | while read file
55
+ do
51
56
match=nothing_is_found
52
57
if [[ $file =~ \. experimental ]] ; then
53
58
match=" ${file// \. experimental/ } "
You can’t perform that action at this time.
0 commit comments