From b27f53e4a2f28875cd2243d15f2d3624de67ca2c Mon Sep 17 00:00:00 2001 From: Simon Vergauwen Date: Wed, 12 Jul 2023 17:21:55 +0200 Subject: [PATCH] Bump versions in quickstart (#217) --- content/docs/learn/quickstart/index.md | 28 +++++++++++++------------- 1 file changed, 14 insertions(+), 14 deletions(-) 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' } ```