Skip to content

Commit

Permalink
Prepare version 1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
squarejesse committed Nov 1, 2023
1 parent 4453dc2 commit 07e0e8c
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,23 @@
## Unreleased


## [1.4.0] - 2023-10-31

* New: `EventListener.Factory` can be used to scope events to a particular `Zipline` instance.
* New: Support arbitrary metadata in the `ZiplineManifest`. This new `Map<String, String>` can be
produced in your `build.gradle.kts` file, and consumed from the `ZiplineManifest` instance.

```kotlin
zipline {
...
metadata.put("build_timestamp", "2023-10-25T12:00:00T")
}
```

* Upgrade: [OkHttp 4.12.0](https://square.github.io/okhttp/changelogs/changelog_4x/#version-4120)
* Upgrade: [Okio 3.6.0](https://square.github.io/okio/changelog/#version-360)


## [1.3.0] - 2023-09-20

* Fix: Configure a 6 MiB stack size by default. Previously Zipline didn't enforce any stack
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.4.0-SNAPSHOT
VERSION_NAME=1.4.0

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

0 comments on commit 07e0e8c

Please sign in to comment.