From a3132cb1bf360a2b47db38eb1442bc6df0e1c7ac Mon Sep 17 00:00:00 2001 From: Jesse Wilson Date: Thu, 30 Nov 2023 15:19:10 -0500 Subject: [PATCH] Prepare version 1.7.0 --- CHANGELOG.md | 15 +++++++++++++++ gradle.properties | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 505086a35a..c02c9eed05 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,21 @@ ## Unreleased +## [1.7.0] - 2023-11-30 + +* New: Gradle APIs to optimize production builds for either small artifact size or developer + experience. Call the appropriate functions in the `zipline {}` block of your build file: + ```kotlin + zipline { + ... + optimizeForSmallArtifactSize() + } + ``` + * Fix: Don't crash when very large `Long` values are sent over a bridged API. Zipline uses JSON to + encode values shared between host and guest, and that converts all primitive numeric types to + `Double`. It is necessary to add `@Contextual` to all serialized `Long` values to get this fix. + + ## [1.6.0] - 2023-11-20 * Upgrade: [SQLDelight 2.0.0][sqldelight_2_0_0] diff --git a/gradle.properties b/gradle.properties index 28bdb7439c..41cd938d4c 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,6 +1,6 @@ org.gradle.jvmargs=-Xmx4096m -Dfile.encoding=UTF-8 -VERSION_NAME=1.7.0-SNAPSHOT +VERSION_NAME=1.7.0 android.useAndroidX=true android.enableJetifier=false