Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Release 0.1.24 #194

Merged
merged 1 commit into from
Jun 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/choredependencies_upgrade_uniffi_rs_to_v0280.md

This file was deleted.

17 changes: 0 additions & 17 deletions .changeset/chorewasm_reduce_wasm_binary_size.md

This file was deleted.

34 changes: 34 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,37 @@
## 0.1.24 (2024-06-27)

### Features

#### 🎸 expose lottie animation original size (#180)

#### added context methods (#191)

#### added load_state_machine_data (#190)

#### chore(wasm): 🤖 reduce WASM binary size

- **WASM Binary Optimization:**

- Applied the `-Oz` flag with `emcc` for size optimization.
- Used the compact `emmalloc` allocator.
- Used the rust nightly toolchain to remove location details and panic string formatting for a smaller binary size.
- Reduced binary size by ~142 KB (from 1,245,102 bytes to 1,099,243 bytes).

- **JavaScript Glue Optimization:**

- Enabled the Closure compiler with the `--closure=1` flag.
- Reduced glue code size by ~36.88 KB (from 67,964 bytes to 30,197 bytes).

### Fixes

#### removed commented out target_arch (#184)

#### iOS bundle minimum supported version on AppStore fix (#185)

#### 🐛 manifest_string() panics when no manifest available (#189)

#### chore(dependencies): 🤖 upgrade uniffi-rs to v0.28.0

## 0.1.23 (2024-06-19)

### Features
Expand Down
2 changes: 1 addition & 1 deletion dotlottie-ffi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dotlottie-ffi"
version = "0.1.23"
version = "0.1.24"
edition = "2021"
build = "build.rs"

Expand Down
Loading