diff --git a/CHANGELOG.md b/CHANGELOG.md index 27b37e8c..32ba743e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,11 @@ ## [Unreleased] -## [1.0.0] - TBD +## [1.0.0] - Sep 22, 2024 + +This is our first stable release! Thanks everyone for using FlowExt, reporting bugs, providing feedback and sending PRs. + +### Changed - Update dependencies: - [Kotlin `2.0.20`](https://github.com/JetBrains/kotlin/releases/tag/v2.0.20). diff --git a/README.md b/README.md index f63fb4d1..bca8f245 100644 --- a/README.md +++ b/README.md @@ -90,7 +90,7 @@ allprojects { ### Multiplatform ```groovy -implementation("io.github.hoc081098:FlowExt:1.0.0-RC") +implementation("io.github.hoc081098:FlowExt:1.0.0") ``` ### Snapshot @@ -109,7 +109,7 @@ allprojects { } dependencies { - implementation("io.github.hoc081098:FlowExt:1.0.0-SNAPSHOT") + implementation("io.github.hoc081098:FlowExt:1.0.1-SNAPSHOT") } ``` @@ -124,7 +124,7 @@ allprojects { } dependencies { - implementation("io.github.hoc081098:FlowExt:1.0.0-SNAPSHOT") + implementation("io.github.hoc081098:FlowExt:1.0.1-SNAPSHOT") } ``` diff --git a/gradle.properties b/gradle.properties index 24283a9b..79c57968 100644 --- a/gradle.properties +++ b/gradle.properties @@ -5,7 +5,7 @@ kotlin.js.generate.executable.default=false GROUP=io.github.hoc081098 # HEY! If you change the major version here be sure to update publish-release.yaml doc target folder! -VERSION_NAME=1.0.0-SNAPSHOT +VERSION_NAME=1.0.0 POM_NAME=FlowExt POM_DESCRIPTION=Kotlinx Coroutines Flow Extensions. Extensions to the Kotlin Flow library.