Skip to content

Commit

Permalink
Prepare version 1.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
squarejesse committed Nov 30, 2023
1 parent e0f922f commit a3132cb
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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]
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.7.0-SNAPSHOT
VERSION_NAME=1.7.0

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

0 comments on commit a3132cb

Please sign in to comment.