File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -32,8 +32,8 @@ GlobalScope.launch {
3232* [ core] ( core/README.md ) &mdash ; Kotlin/JVM implementation of common coroutines with additional features:
3333 * ` Dispatchers.IO ` dispatcher for blocking coroutines;
3434 * ` Executor.asCoroutineDispatcher() ` extension, custom thread pools, and more.
35- * [ test] ( core/README.md ) &mdash ; test utilities for coroutines, currently with one feature:
36- * ` MainDispatcherInjector.inject() ` to override ` Dispatchers.Main ` in tests.
35+ * [ test] ( core/README.md ) &mdash ; test utilities for coroutines
36+ * ` Dispatchers.setMain ` to override ` Dispatchers.Main ` in tests.
3737* [ debug] ( core/README.md ) &mdash ; debug utilities for coroutines.
3838 * ` DebugProbes ` API to probe, keep track of, print and dump active coroutines.
3939* [ js] ( js/README.md ) &mdash ; Kotlin/JS implementation of common coroutines with ` Promise ` support.
Original file line number Diff line number Diff line change @@ -7,5 +7,5 @@ Module name below corresponds to the artifact name in Maven/Gradle.
77
88* [ kotlinx-coroutines-core] ( kotlinx-coroutines-core/README.md ) &mdash ; core coroutine builders and synchronization primitives.
99* [ kotlinx-coroutines-debug] ( kotlinx-coroutines-debug/README.md ) &mdash ; coroutines debug utilities.
10- * [ kotlinx-coroutines-test] ( kotlinx-coroutines-test/README.md ) &mdash ; coroutines test utilities such as settable Main dispatcher .
10+ * [ kotlinx-coroutines-test] ( kotlinx-coroutines-test/README.md ) &mdash ; coroutines test utilities.
1111
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ of coroutines hierarchy referenced by a [Job] instance using [DebugProbes.printH
1616### Using as JVM agent
1717
1818It is possible to use this module as a standalone JVM agent to enable debug probes on the application startup.
19- You can run your application with an additional argument: ` -javaagent:kotlinx-coroutines-debug-1.1.0 .jar ` .
19+ You can run your application with an additional argument: ` -javaagent:kotlinx-coroutines-debug-1.0.1 .jar ` .
2020Additionally, on Linux and Mac OS X you can use ` kill -5 $pid ` command in order to force your application to print all alive coroutines.
2121
2222
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ Test utilities for `kotlinx.coroutines`. Provides `Dispatchers.setMain` to overr
77Add ` kotlinx-coroutines-test ` to your project test dependencies:
88```
99dependencies {
10- testImplementation 'org.jetbrains.kotlinx:kotlinx-coroutines-test:1.1.0 '
10+ testImplementation 'org.jetbrains.kotlinx:kotlinx-coroutines-test:1.0.1 '
1111}
1212```
1313
You can’t perform that action at this time.
0 commit comments