Skip to content

Commit

Permalink
Prepare version 1.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeWharton committed Jun 6, 2024
1 parent 507a434 commit 5a80ec1
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 6 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

## Unreleased

## [1.11.0] - 2024-06-05

* New: `apiTracking` property on the `zipline { }` Gradle extension allows disabling API generation.
* Fix: Calling `Zipline.close()` will now call `ZiplineService.close()` on all bound services. Strong
references to the services will also be cleared to prevent reference cycles on native.
* Upgrade: [Kotlin 2.0.0][kotlin_2_0_0]]


## [1.10.1] - 2024-05-13

* Fix: Build the released artifact on macOS instead of Linux to work around an issue packaging
Expand Down Expand Up @@ -493,6 +501,7 @@ Initial release.
[kotlin_1_8_21]: https://github.com/JetBrains/kotlin/releases/tag/v1.8.21
[kotlin_1_9_20]: https://github.com/JetBrains/kotlin/releases/tag/v1.9.20
[kotlin_1_9_23]: https://github.com/JetBrains/kotlin/releases/tag/v1.9.23
[kotlin_2_0_0]: https://github.com/JetBrains/kotlin/releases/tag/v2.0.0
[kotlin_serialization_1_4_0]: https://github.com/Kotlin/kotlinx.serialization/releases/tag/v1.4.0
[kotlin_serialization_1_5_0]: https://github.com/Kotlin/kotlinx.serialization/releases/tag/v1.5.0
[kotlin_serialization_1_5_1]: https://github.com/Kotlin/kotlinx.serialization/releases/tag/v1.5.1
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -217,11 +217,11 @@ Zipline works on Android 4.3+ (API level 18+), Java 8+, and [Kotlin/Native].
Zipline uses unstable APIs in its implementation and is sensitive to version updates for these
components.

| Component | Supported Version | Notes |
|:---------------------|:------------------|:----------------------------------------------------------------------------|
| Kotlin Compiler | 1.9.20 | Kotlin compiler plugins do not yet have a stable API. |
| Kotlin Serialization | 1.6.0 | For `decodeFromDynamic()`, `encodeToDynamic()`, and `ContextualSerializer`. |
| Kotlin Coroutines | 1.7.3 | For `transformLatest()` and `Deferred.getCompleted()`. |
| Component | Supported Version | Notes |
|:---------------------|:------------------|:---------------------------------------------------------------------------------|
| Kotlin Compiler | 2.0.0 | Kotlin compiler plugins do not yet have a stable API. |
| Kotlin Serialization | 1.6.3 | For `decodeFromDynamic()`, `encodeToDynamic()`, and `ContextualSerializer`. |
| Kotlin Coroutines | 1.8.1 | For `transformLatest()`, `Deferred.getCompleted()`, and `CoroutineStart.ATOMIC`. |

We intend to use stable APIs as soon as they are available.

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ org.gradle.caching=true
org.gradle.jvmargs=-Xmx4096m -Dfile.encoding=UTF-8
org.gradle.parallel=true

VERSION_NAME=1.11.0-SNAPSHOT
VERSION_NAME=1.11.0

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

0 comments on commit 5a80ec1

Please sign in to comment.