diff --git a/CHANGELOG.md b/CHANGELOG.md index cf542f40d7..cf292c6f9e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,8 +2,7 @@ ## [Unreleased] - -## [0.9.10] - 2022-11-30 +## [0.9.11] - 2022-12-05 We've changed this project to focus exclusively on executing Kotlin/JS libraries. @@ -13,6 +12,12 @@ until June 2021), those projects remain as git branches but will not receive fur The project's new Maven coordinates are `app.cash.zipline:zipline`. + * New: Publish an event when Zipline is closed. + * Fix: Avoid a linear search through endpoint names. + + +## [0.9.10] - 2022-11-30 + * New: Add support for `var` and `val` declarations in service interfaces. * Fix: Update Gradle task to serve zipline files for compatibility with Gradle 7.6. diff --git a/build.gradle.kts b/build.gradle.kts index 3d05066502..2623789a93 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -40,7 +40,7 @@ apply(plugin = "com.vanniktech.maven.publish.base") allprojects { group = "app.cash.zipline" - version = "1.0.0-SNAPSHOT" + version = "0.9.11" repositories { mavenCentral()