diff --git a/CHANGELOG.md b/CHANGELOG.md index dd0bcc91..23d6a41c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ # Changelog ## [Unreleased] + +## [2.1.0] - 2020-09-28 ### Added - Add a `runtime` overload which combines `view` and `render`. - Update Kotlin to 1.4.10 @@ -70,7 +72,8 @@ Initial release -[Unreleased]: https://github.com/oolong-kt/oolong/compare/v2.0.7...HEAD +[Unreleased]: https://github.com/oolong-kt/oolong/compare/v2.1.0...HEAD +[2.1.0]: https://github.com/oolong-kt/oolong/compare/v2.0.7...v2.1.0 [2.0.7]: https://github.com/oolong-kt/oolong/compare/v2.0.6...v2.0.7 [2.0.6]: https://github.com/oolong-kt/oolong/compare/v2.0.5...v2.0.6 [2.0.5]: https://github.com/oolong-kt/oolong/compare/v2.0.4...v2.0.5 diff --git a/README.md b/README.md index 769fdd7b..d412a5d2 100644 --- a/README.md +++ b/README.md @@ -24,6 +24,6 @@ Get started with Oolong by reading the [official guide](https://oolong-kt.org). ```kotlin dependencies { - implementation("org.oolong-kt:oolong:2.0.7") + implementation("org.oolong-kt:oolong:2.1.0") } ``` diff --git a/gradle.properties b/gradle.properties index 4f88b160..0ee59fa7 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ GROUP=org.oolong-kt -VERSION_NAME=2.1.0-SNAPSHOT +VERSION_NAME=2.1.0 POM_DESCRIPTION=MVU for Kotlin Multiplatform POM_URL=https://github.com/oolong-kt/oolong/