chore: bump version to 0.2.0 and add changelog - #1
Open
Ziinc wants to merge 7 commits into
Open
Conversation
Bump tauri-test and tauri-test-macros from 0.1.0 to 0.2.0 to reflect the new state/getAppState and AppHandle/WebviewWindow support added since the last crates.io publish, and document releases in the README. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01NRQ8ZoKSGQ7QdgeF6bkxEt
Drop the no-op `features = []` on tauri and move `serde` out of the required dependency block since generated code only needs it when a command uses a custom (de)serializable type or the `state` option; also show the `AppState` struct so the state example is self-contained. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01NRQ8ZoKSGQ7QdgeF6bkxEt
Move version history out of the README into RELEASE_NOTES.md, drafted for use when publishing the GitHub release for v0.2.0. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01NRQ8ZoKSGQ7QdgeF6bkxEt
Release description is handled directly in the GitHub draft release instead of being tracked in the repo. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01NRQ8ZoKSGQ7QdgeF6bkxEt
Reformat generate_setup_impl match binding in tauri-test-macros to satisfy `cargo fmt --check`, which was failing CI. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01NRQ8ZoKSGQ7QdgeF6bkxEt
The examples-test job runs `npm test`, which builds the src-tauri native lib via a pretest script, but never installed the GTK/webkit2gtk system packages Tauri's Linux build needs — causing pkg-config lookups for glib-2.0/gobject-2.0 to fail. Add the same apt-get install step already used by the rust-ci job. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01NRQ8ZoKSGQ7QdgeF6bkxEt
`cargo test --workspace` was failing on macOS (and would fail on Linux too) because it links the example app's `tauri-app` bin as a standalone test executable. That bin's lib embeds #[napi]-annotated functions whose napi_* symbols are only resolved when Node dlopen's the addon, so the standalone link fails with undefined symbols. Declare the bin explicitly with test = false, since it has no #[test]s of its own — cargo test now only builds/tests the lib target. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01NRQ8ZoKSGQ7QdgeF6bkxEt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Bump tauri-test and tauri-test-macros from 0.1.0 to 0.2.0 to reflect
the new state/getAppState and AppHandle/WebviewWindow support added
since the last crates.io publish, and document releases in the README.