Skip to content

Commit 63d1d1b

Browse files
committed
Use https in documentation and builds
1 parent 0cab2fa commit 63d1d1b

File tree

20 files changed

+54
-54
lines changed

20 files changed

+54
-54
lines changed

CHANGES.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ Visible consequences of include more robust exception handling for large corouti
184184
* Introduced IO dispatcher to offload blocking I/O-intensive tasks (see #79).
185185
* Introduced `ExecutorCoroutineDispatcher` instead of `CloseableCoroutineDispatcher` (see #385).
186186
* Built with Kotlin 1.2.61 and Kotlin/Native 0.8.2.
187-
* JAR files for `kotlinx-coroutines` are now [JEP 238](http://openjdk.java.net/jeps/238) multi-release JAR files.
187+
* JAR files for `kotlinx-coroutines` are now [JEP 238](https://openjdk.java.net/jeps/238) multi-release JAR files.
188188
* On JDK9+ `VarHandle` is used for atomic operations instead of `Atomic*FieldUpdater` for better performance.
189189
* See [AtomicFu](https://github.com/Kotlin/kotlinx.atomicfu/blob/master/README.md) project for details.
190190
* Reversed addition of `BlockingChecker` extension point to control where `runBlocking` can be used (see #227).
@@ -221,7 +221,7 @@ Visible consequences of include more robust exception handling for large corouti
221221
* Includes multiple fixes to documentation contributed by @paolop, @SahilLone, @rocketraman, @bdavisx, @mtopolnik, @Groostav.
222222
* Experimental coroutines scheduler preview (JVM only):
223223
* Written from scratch and optimized for communicating coroutines.
224-
* Performs significantly better than ForkJoinPool on coroutine benchmarks and for connected applications with [ktor](http://ktor.io).
224+
* Performs significantly better than ForkJoinPool on coroutine benchmarks and for connected applications with [ktor](https://ktor.io).
225225
* Supports automatic creating of new threads for blocking operations running on the same thread pool (with an eye on solving #79), but there is no stable public API for it just yet.
226226
* For preview, run JVM with `-Dkotlinx.coroutines.scheduler` option. In this case `DefaultDispatcher` is set to new experimental scheduler instead of FJP-based `CommonPool`.
227227
* Submit your feedback to issue #261.
@@ -514,7 +514,7 @@ Visible consequences of include more robust exception handling for large corouti
514514
* Fixed bug in internal class LockFreeLinkedList that resulted in ISE under stress in extremely rare circumstances.
515515
* Integrations:
516516
* [quasar](integration/kotlinx-coroutines-quasar): Introduced integration with suspendable JVM functions
517-
that are instrumented with [Parallel Universe Quasar](http://docs.paralleluniverse.co/quasar/)
517+
that are instrumented with [Parallel Universe Quasar](https://docs.paralleluniverse.co/quasar/)
518518
(thanks to the help of @pron).
519519
* [reactor](reactive/kotlinx-coroutines-reactor): Replaced deprecated `setCancellation` with `onDipose` and
520520
updated to Aluminium-SR3 release (courtesy of @yxf07, see #96)

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# kotlinx.coroutines
22

3-
[![official JetBrains project](http://jb.gg/badges/official.svg)](https://confluence.jetbrains.com/display/ALL/JetBrains+on+GitHub)
4-
[![GitHub license](https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat)](http://www.apache.org/licenses/LICENSE-2.0)
3+
[![official JetBrains project](https://jb.gg/badges/official.svg)](https://confluence.jetbrains.com/display/ALL/JetBrains+on+GitHub)
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)
55
[![Download](https://api.bintray.com/packages/kotlin/kotlinx/kotlinx.coroutines/images/download.svg?version=1.1.1) ](https://bintray.com/kotlin/kotlinx/kotlinx.coroutines/1.1.1)
66

77
Library support for Kotlin coroutines with [multiplatform](#multiplatform) support.
@@ -59,7 +59,7 @@ GlobalScope.launch {
5959
* [Compatibility policy and experimental annotations](docs/compatibility.md)
6060
* [Change log for kotlinx.coroutines](CHANGES.md)
6161
* [Coroutines design document (KEEP)](https://github.com/Kotlin/KEEP/blob/master/proposals/coroutines.md)
62-
* [Full kotlinx.coroutines API reference](http://kotlin.github.io/kotlinx.coroutines)
62+
* [Full kotlinx.coroutines API reference](https://kotlin.github.io/kotlinx.coroutines)
6363

6464
## Using in your projects
6565

RELEASE.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ To release new `<version>` of `kotlinx-coroutines`:
4949
* Wait until "Build" configuration for committed `master` branch passes tests.
5050
* Run "Deploy (Configure, RUN THIS ONE)" configuration with the corresponding new version.
5151

52-
2. In [GitHub](http://github.com/kotlin/kotlinx.coroutines) interface:
52+
2. In [GitHub](https://github.com/kotlin/kotlinx.coroutines) interface:
5353
* Create new release named as `<version>`.
5454
* Cut & paste lines from [`CHANGES.md`](CHANGES.md) into description.
5555

@@ -61,7 +61,7 @@ To release new `<version>` of `kotlinx-coroutines`:
6161
* Wait until newly published version becomes the most recent.
6262
* Sync to Maven Central.
6363

64-
5. Announce new release in [Slack](http://kotlinlang.slack.com)
64+
5. Announce new release in [Slack](https://kotlinlang.slack.com)
6565

6666
6. Switch into `develop` branch:<br>
6767
`git checkout develop`

benchmarks/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ apply plugin: "com.github.johnrengelman.shadow"
77
apply plugin: "me.champeau.gradle.jmh"
88

99
repositories {
10-
maven { url "http://repo.typesafe.com/typesafe/releases/" }
10+
maven { url "https://repo.typesafe.com/typesafe/releases/" }
1111
}
1212

1313
jmh.jmhVersion = '1.21'

docs/coroutines-guide.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ In order to use coroutines as well as follow the examples in this guide, you nee
2929
* [Guide to UI programming with coroutines](../ui/coroutines-guide-ui.md)
3030
* [Guide to reactive streams with coroutines](../reactive/coroutines-guide-reactive.md)
3131
* [Coroutines design document (KEEP)](https://github.com/Kotlin/kotlin-coroutines/blob/master/kotlin-coroutines-informal.md)
32-
* [Full kotlinx.coroutines API reference](http://kotlin.github.io/kotlinx.coroutines)
32+
* [Full kotlinx.coroutines API reference](https://kotlin.github.io/kotlinx.coroutines)

gradle/dokka.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ def makeLinkMapping(dokka, projectDir) {
99
dokka.linkMapping {
1010
def relPath = rootProject.projectDir.toPath().relativize(projectDir.toPath())
1111
dir = "$projectDir/src"
12-
url = "http://github.com/kotlin/kotlinx.coroutines/tree/master/$relPath/src"
12+
url = "https://github.com/kotlin/kotlinx.coroutines/tree/master/$relPath/src"
1313
suffix = "#L"
1414
}
1515
}

gradle/maven-central.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ def pomConfig = {
88
licenses {
99
license {
1010
name "The Apache Software License, Version 2.0"
11-
url "http://www.apache.org/licenses/LICENSE-2.0.txt"
11+
url "https://www.apache.org/licenses/LICENSE-2.0.txt"
1212
distribution "repo"
1313
}
1414
}
@@ -17,7 +17,7 @@ def pomConfig = {
1717
id "JetBrains"
1818
name "JetBrains Team"
1919
organization "JetBrains"
20-
organizationUrl "http://www.jetbrains.com"
20+
organizationUrl "https://www.jetbrains.com"
2121
}
2222
}
2323

js/example-frontend-js/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ gradlew :example-frontend-js:start
1515
```
1616

1717
Built and deployed application is available at the library documentation site
18-
[here](http://kotlin.github.io/kotlinx.coroutines/example-frontend-js/index.html).
18+
[here](https://kotlin.github.io/kotlinx.coroutines/example-frontend-js/index.html).

kotlinx-coroutines-core/common/src/internal/Atomic.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ private val NO_DECISION: Any = Symbol("NO_DECISION")
2626
/**
2727
* Descriptor for multi-word atomic operation.
2828
* Based on paper
29-
* ["A Practical Multi-Word Compare-and-Swap Operation"](http://www.cl.cam.ac.uk/research/srgnetos/papers/2002-casn.pdf)
29+
* ["A Practical Multi-Word Compare-and-Swap Operation"](https://www.cl.cam.ac.uk/research/srg/netos/papers/2002-casn.pdf)
3030
* by Timothy L. Harris, Keir Fraser and Ian A. Pratt.
3131
*
3232
* Note: parts of atomic operation must be globally ordered. Otherwise, this implementation will produce

kotlinx-coroutines-core/js/npm/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ launch {
1313
## Documentation
1414

1515
* [Guide to kotlinx.coroutines by example on JVM](https://github.com/Kotlin/kotlinx.coroutines/blob/master/coroutines-guide.md) (**read it first**)
16-
* [Full kotlinx.coroutines API reference](http://kotlin.github.io/kotlinx.coroutines)
16+
* [Full kotlinx.coroutines API reference](https://kotlin.github.io/kotlinx.coroutines)

kotlinx-coroutines-core/jvm/src/internal/LockFreeLinkedList.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public actual typealias AbstractAtomicDesc = LockFreeLinkedListNode.AbstractAtom
4141
/**
4242
* Doubly-linked concurrent list node with remove support.
4343
* Based on paper
44-
* ["Lock-Free and Practical Doubly Linked List-Based Deques Using Single-Word Compare-and-Swap"](http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.140.4693&rep=rep1&type=pdf)
44+
* ["Lock-Free and Practical Doubly Linked List-Based Deques Using Single-Word Compare-and-Swap"](https://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.140.4693&rep=rep1&type=pdf)
4545
* by Sundell and Tsigas.
4646
*
4747
* Important notes:

reactive/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ Module name below corresponds to the artifact name in Maven/Gradle.
55

66
## Modules
77

8-
* [kotlinx-coroutines-reactive](kotlinx-coroutines-reactive/README.md) -- utilities for [Reactive Streams](http://www.reactive-streams.org)
8+
* [kotlinx-coroutines-reactive](kotlinx-coroutines-reactive/README.md) -- utilities for [Reactive Streams](https://www.reactive-streams.org)
99
* [kotlinx-coroutines-reactor](kotlinx-coroutines-reactor/README.md) -- utilities for [Reactor](https://projectreactor.io)
1010
* [kotlinx-coroutines-rx2](kotlinx-coroutines-rx2/README.md) -- utilities for [RxJava 2.x](https://github.com/ReactiveX/RxJava)

0 commit comments

Comments
 (0)