diff --git a/content/docs/learn/quickstart/index.md b/content/docs/learn/quickstart/index.md index 548195df..ed1e7469 100644 --- a/content/docs/learn/quickstart/index.md +++ b/content/docs/learn/quickstart/index.md @@ -71,8 +71,8 @@ Simply include the desired library in your `dependencies` block or as a ```kotlin dependencies { - implementation("io.arrow-kt:arrow-core:1.2.0-RC") - implementation("io.arrow-kt:arrow-fx-coroutines:1.2.0-RC") + implementation("io.arrow-kt:arrow-core:1.2.0") + implementation("io.arrow-kt:arrow-fx-coroutines:1.2.0") } ``` @@ -81,8 +81,8 @@ dependencies { ```groovy dependencies { - implementation 'io.arrow-kt:arrow-core:1.2.0-RC' - implementation 'io.arrow-kt:arrow-fx-coroutines:1.2.0-RC' + implementation 'io.arrow-kt:arrow-core:1.2.0' + implementation 'io.arrow-kt:arrow-fx-coroutines:1.2.0' } ``` @@ -94,12 +94,12 @@ dependencies { io.arrow-kt arrow-core - 1.2.0-RC + 1.2.0 io.arrow-kt arrow-fx-coroutines - 1.2.0-RC + 1.2.0 ``` @@ -118,7 +118,7 @@ your Gradle build has several subprojects. ```yaml [versions] -arrow = "1.2.0-RC" +arrow = "1.2.0" # other versions [libraries] @@ -172,7 +172,7 @@ to include `arrow-stack`, which declares versions for the rest of the components ```kotlin dependencies { - implementation(platform("io.arrow-kt:arrow-stack:1.2.0-RC")) + implementation(platform("io.arrow-kt:arrow-stack:1.2.0")) // no versions on libraries implementation("io.arrow-kt:arrow-core") implementation("io.arrow-kt:arrow-fx-coroutines") @@ -184,7 +184,7 @@ dependencies { ```groovy dependencies { - implementation platform('io.arrow-kt:arrow-stack:1.2.0-RC') + implementation platform('io.arrow-kt:arrow-stack:1.2.0') // no versions on libraries implementation 'io.arrow-kt:arrow-core' implementation 'io.arrow-kt:arrow-fx-coroutines' @@ -199,7 +199,7 @@ dependencies { io.arrow-kt arrow-stack - 1.2.0-RC + 1.2.0 pom import @@ -234,8 +234,8 @@ plugins { } dependencies { - implementation("io.arrow-kt:arrow-optics:1.2.0-RC") - ksp("io.arrow-kt:arrow-optics-ksp-plugin:1.2.0-RC") + implementation("io.arrow-kt:arrow-optics:1.2.0") + ksp("io.arrow-kt:arrow-optics-ksp-plugin:1.2.0") } ``` @@ -248,8 +248,8 @@ plugins { } dependencies { - implementation 'io.arrow-kt:arrow-optics:1.2.0-RC' - ksp 'io.arrow-kt:arrow-optics-ksp-plugin:1.2.0-RC' + implementation 'io.arrow-kt:arrow-optics:1.2.0' + ksp 'io.arrow-kt:arrow-optics-ksp-plugin:1.2.0' } ```