Skip to content

Commit

Permalink
Prepare version 0.9.14
Browse files Browse the repository at this point in the history
  • Loading branch information
squarejesse committed Jan 16, 2023
1 parent fa6d544 commit 29acefd
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## [Unreleased]

## [0.9.13] - 2022-12-22
## [0.9.14] - 2022-01-16

We've changed this project to focus exclusively on executing Kotlin/JS libraries.

Expand All @@ -12,6 +12,16 @@ 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`.

* Fix: Don’t force `suspend` functions to suspend. We've changed our calling convention so
suspendable functions are executed inline and on the same call stack until they suspend. If such
functions return without suspending, the async dispatch is skipped.
* Fix: Provide more information when calling a closed service.
* Fix: Clean up file names in stack traces.
* New: Add a `ZiplineManifest` to `LoadResult.Success`.


## [0.9.13] - 2022-12-22

* New: `ZiplineScope` is a new mechanism to close pass-by-reference services and flows. Pass a
`ZiplineScope` to `Zipline.take()` or implement `ZiplineScoped` in a `ZiplineService` to declare
a scope, then call `ZiplineScope.close()` to close all received services. Note that Flows
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
org.gradle.jvmargs=-Xmx4096m -Dfile.encoding=UTF-8

VERSION_NAME=1.0.0-SNAPSHOT
VERSION_NAME=0.9.14

android.useAndroidX=true
android.enableJetifier=false
Expand Down

0 comments on commit 29acefd

Please sign in to comment.