From 04432ad95fd74b6f08e2d0d325603b9bb904a39e Mon Sep 17 00:00:00 2001 From: John Carmack Date: Tue, 13 Jan 2026 18:03:40 -0800 Subject: [PATCH] Prepare stable 0.2.0 release Remove prerelease configuration and bump versions to 0.2.0. **Highlights:** - Add flamegraph feature for performance profiling - Add WebviewLayer for custom subscriber setups - Add file logging with rotation - Add takeoverConsole() for full console integration - Add interceptConsole() and attachConsole() for flexible routing - Add StripAnsiWriter for clean file output - Add custom filter and layer support - Add format options and timezone strategy - Add per-target log level filtering - Add clippy lints to deny unwrap/expect in production - Remove timing feature --- .changes/add-custom-layers.md | 6 --- .changes/add-documentation.md | 6 --- .changes/add-file-logging.md | 6 --- .changes/add-filter.md | 6 --- .changes/add-flamegraph-permissions.md | 6 --- .changes/add-flamegraph.md | 8 ---- .changes/add-format.md | 6 --- .changes/add-log-rotation.md | 6 --- .changes/add-max-file-size.md | 6 --- .../add-release-channel-checking-to-ci.md | 6 --- .changes/add-specta.md | 6 --- .changes/add-strip-ansi-writer.md | 6 --- .changes/add-target-filters.md | 6 --- .changes/add-targets-api.md | 6 --- .changes/add-timezone-strategy.md | 6 --- .changes/add-timing.md | 6 --- .changes/add-webview-layer.md | 6 --- .changes/auto-docs-upload.md | 6 --- .changes/deny-unwrap-lints.md | 6 --- .changes/fine-tune-ci-workflows.md | 6 --- .changes/fix-doc-links.md | 6 --- .changes/fix-doctests.md | 6 --- .changes/fix-empty-call-stack.md | 6 --- .changes/fix-file-logging-docs.md | 6 --- .changes/flamegraph-custom-subscriber.md | 11 ----- .../inclue-window-name-in-tracing-logs.md | 6 --- .changes/move-to-github-packages.md | 6 --- .changes/patch-various-bugs.md | 6 --- .changes/pre.json | 47 ------------------- .changes/readme-update.md | 6 --- .changes/release-0.2.0.md | 21 +++++++++ .changes/set-up-publish-jobs.md | 6 --- .changes/skip-version.md | 6 --- .changes/takeover-console.md | 6 --- .changes/update-tauri-dependencies.md | 9 ---- .changes/update-timing-behavior.md | 6 --- .changes/use-async-mutex.md | 6 --- .changes/use-default-subscriber.md | 6 --- .changes/use-npm-oidc.md | 6 --- .changes/use-sync-methods-for-logs.md | 6 --- Cargo.toml | 2 +- package.json | 2 +- 42 files changed, 23 insertions(+), 287 deletions(-) delete mode 100644 .changes/add-custom-layers.md delete mode 100644 .changes/add-documentation.md delete mode 100644 .changes/add-file-logging.md delete mode 100644 .changes/add-filter.md delete mode 100644 .changes/add-flamegraph-permissions.md delete mode 100644 .changes/add-flamegraph.md delete mode 100644 .changes/add-format.md delete mode 100644 .changes/add-log-rotation.md delete mode 100644 .changes/add-max-file-size.md delete mode 100644 .changes/add-release-channel-checking-to-ci.md delete mode 100644 .changes/add-specta.md delete mode 100644 .changes/add-strip-ansi-writer.md delete mode 100644 .changes/add-target-filters.md delete mode 100644 .changes/add-targets-api.md delete mode 100644 .changes/add-timezone-strategy.md delete mode 100644 .changes/add-timing.md delete mode 100644 .changes/add-webview-layer.md delete mode 100644 .changes/auto-docs-upload.md delete mode 100644 .changes/deny-unwrap-lints.md delete mode 100644 .changes/fine-tune-ci-workflows.md delete mode 100644 .changes/fix-doc-links.md delete mode 100644 .changes/fix-doctests.md delete mode 100644 .changes/fix-empty-call-stack.md delete mode 100644 .changes/fix-file-logging-docs.md delete mode 100644 .changes/flamegraph-custom-subscriber.md delete mode 100644 .changes/inclue-window-name-in-tracing-logs.md delete mode 100644 .changes/move-to-github-packages.md delete mode 100644 .changes/patch-various-bugs.md delete mode 100644 .changes/pre.json delete mode 100644 .changes/readme-update.md create mode 100644 .changes/release-0.2.0.md delete mode 100644 .changes/set-up-publish-jobs.md delete mode 100644 .changes/skip-version.md delete mode 100644 .changes/takeover-console.md delete mode 100644 .changes/update-tauri-dependencies.md delete mode 100644 .changes/update-timing-behavior.md delete mode 100644 .changes/use-async-mutex.md delete mode 100644 .changes/use-default-subscriber.md delete mode 100644 .changes/use-npm-oidc.md delete mode 100644 .changes/use-sync-methods-for-logs.md diff --git a/.changes/add-custom-layers.md b/.changes/add-custom-layers.md deleted file mode 100644 index 5fd5470..0000000 --- a/.changes/add-custom-layers.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"tracing": minor -"tracing-js": minor ---- - -Add `with_layer()` method and `BoxedLayer` type alias for custom tracing layer support. Users can now add their own `tracing_subscriber::Layer` implementations to the subscriber stack. diff --git a/.changes/add-documentation.md b/.changes/add-documentation.md deleted file mode 100644 index a5bdcae..0000000 --- a/.changes/add-documentation.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"tracing": patch -"tracing-js": patch ---- - -Add documentation: rustdocs for Rust public API, JSDoc for TypeScript API, integration tests, and feature parity roadmap in README. diff --git a/.changes/add-file-logging.md b/.changes/add-file-logging.md deleted file mode 100644 index 5b586c3..0000000 --- a/.changes/add-file-logging.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"tracing": minor -"tracing-js": minor ---- - -Add file logging support with daily rotation via tracing-appender. New builder methods: `with_file_logging()` for platform-standard log directories, `with_log_dir()` for custom paths. diff --git a/.changes/add-filter.md b/.changes/add-filter.md deleted file mode 100644 index 2f73f9c..0000000 --- a/.changes/add-filter.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"tracing": minor -"tracing-js": minor ---- - -Add `filter()` builder method for metadata-based log filtering. Accepts a closure that receives event metadata and returns `true` to include the log. Applied in addition to level and target filters when using `with_default_subscriber()`. diff --git a/.changes/add-flamegraph-permissions.md b/.changes/add-flamegraph-permissions.md deleted file mode 100644 index 427ea40..0000000 --- a/.changes/add-flamegraph-permissions.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"tracing": patch -"tracing-js": patch ---- - -Add ACL permissions for flamegraph commands. diff --git a/.changes/add-flamegraph.md b/.changes/add-flamegraph.md deleted file mode 100644 index f40c2bd..0000000 --- a/.changes/add-flamegraph.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -"tracing": minor -"tracing-js": minor ---- - -Add flamegraph profiling support via new `flamegraph` feature. Enable span recording with `with_flamegraph()` builder method, then generate visualizations using `generateFlamegraph()` (collapses identical stacks) or `generateFlamechart()` (preserves event ordering) from JavaScript. - -**Breaking:** Remove `timing` feature (`time()`/`timeEnd()` APIs). Use native `console.time()` for JS timing or tracing spans for Rust timing instead. diff --git a/.changes/add-format.md b/.changes/add-format.md deleted file mode 100644 index 8b532d3..0000000 --- a/.changes/add-format.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"tracing": minor -"tracing-js": minor ---- - -Add log formatting options via `with_format()` and related methods. Configure output style (`LogFormat::Full`, `Compact`, or `Pretty`) and control what information is displayed: `with_file()`, `with_line_number()`, `with_thread_ids()`, `with_thread_names()`, `with_target_display()`, `with_level()`. Also adds `FormatOptions` struct and `configured_format()`/`configured_format_options()` getters. diff --git a/.changes/add-log-rotation.md b/.changes/add-log-rotation.md deleted file mode 100644 index 4fc6bb7..0000000 --- a/.changes/add-log-rotation.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"tracing": minor -"tracing-js": minor ---- - -Add log rotation support with configurable time-based rotation periods (Daily, Hourly, Minutely, Never) and retention strategies (KeepAll, KeepOne, KeepSome). New builder methods: `with_rotation()` for rotation period, `with_rotation_strategy()` for file retention policy. diff --git a/.changes/add-max-file-size.md b/.changes/add-max-file-size.md deleted file mode 100644 index 4aef429..0000000 --- a/.changes/add-max-file-size.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"tracing": minor -"tracing-js": minor ---- - -Add `with_max_file_size()` builder method for size-based log rotation. Use `MaxFileSize::kb()`, `MaxFileSize::mb()`, or `MaxFileSize::gb()` for convenient size specification. Size-based rotation can be combined with time-based rotation. diff --git a/.changes/add-release-channel-checking-to-ci.md b/.changes/add-release-channel-checking-to-ci.md deleted file mode 100644 index 489d76e..0000000 --- a/.changes/add-release-channel-checking-to-ci.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -tracing: patch -tracing-js: patch ---- - -Add [release channel check](https://docs.npmjs.com/adding-dist-tags-to-packages) to publish job CI. diff --git a/.changes/add-specta.md b/.changes/add-specta.md deleted file mode 100644 index c6cb06b..0000000 --- a/.changes/add-specta.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -tracing: patch -tracing-js: patch ---- - -Add `specta` feature for integration with other Tauri & typescript plugins. diff --git a/.changes/add-strip-ansi-writer.md b/.changes/add-strip-ansi-writer.md deleted file mode 100644 index 1d82596..0000000 --- a/.changes/add-strip-ansi-writer.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"tracing": minor -"tracing-js": minor ---- - -Add `StripAnsiWriter` for stripping ANSI escape codes from file writers, and printf-style format expansion (%s, %d, %i, %f, %o, %O) in JS. `StripAnsiWriter` uses a zero-copy fast path with SIMD-accelerated ESC byte detection via memchr. diff --git a/.changes/add-target-filters.md b/.changes/add-target-filters.md deleted file mode 100644 index b4103e9..0000000 --- a/.changes/add-target-filters.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"tracing": patch -"tracing-js": patch ---- - -Users can now filter targets using [tracing_subscriber::Target::with_taget(...)](https://docs.rs/tracing-subscriber/latest/tracing_subscriber/filter/targets/struct.Targets.html) syntax. diff --git a/.changes/add-targets-api.md b/.changes/add-targets-api.md deleted file mode 100644 index 218d09f..0000000 --- a/.changes/add-targets-api.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"tracing": minor -"tracing-js": minor ---- - -Add `Target` enum and `target()`/`targets()`/`clear_targets()` builder methods to configure log destinations (Stdout, Stderr, Webview, LogDir, Folder). Add `configured_targets()`, `configured_rotation()`, and `configured_rotation_strategy()` getters for querying builder configuration. diff --git a/.changes/add-timezone-strategy.md b/.changes/add-timezone-strategy.md deleted file mode 100644 index 2577898..0000000 --- a/.changes/add-timezone-strategy.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"tracing": minor -"tracing-js": minor ---- - -Add `with_timezone_strategy()` builder method to configure timestamp timezone. Use `TimezoneStrategy::Utc` (default) for UTC timestamps or `TimezoneStrategy::Local` for local time with the system's timezone offset. diff --git a/.changes/add-timing.md b/.changes/add-timing.md deleted file mode 100644 index 4ec09f5..0000000 --- a/.changes/add-timing.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -tracing: minor -tracing-js: minor ---- - -Add timing. diff --git a/.changes/add-webview-layer.md b/.changes/add-webview-layer.md deleted file mode 100644 index 4a4efe6..0000000 --- a/.changes/add-webview-layer.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"tracing": patch -"tracing-js": patch ---- - -Add WebviewLayer to forward Rust logs to frontend via `tracing://log` events, enabling `attachLogger()` and `attachConsole()`. diff --git a/.changes/auto-docs-upload.md b/.changes/auto-docs-upload.md deleted file mode 100644 index ff47d65..0000000 --- a/.changes/auto-docs-upload.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"tracing": patch -"tracing-js": patch ---- - -Add automatic docs upload to Kellnr after publish. diff --git a/.changes/deny-unwrap-lints.md b/.changes/deny-unwrap-lints.md deleted file mode 100644 index 2388647..0000000 --- a/.changes/deny-unwrap-lints.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"tracing": patch -"tracing-js": patch ---- - -Add clippy lints to deny `unwrap()` and `expect()` in production code, preventing accidental panics. diff --git a/.changes/fine-tune-ci-workflows.md b/.changes/fine-tune-ci-workflows.md deleted file mode 100644 index 9dca1f7..0000000 --- a/.changes/fine-tune-ci-workflows.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"tracing": patch -"tracing-js": patch ---- - -Fine tune publishing jobs, use a release branch. diff --git a/.changes/fix-doc-links.md b/.changes/fix-doc-links.md deleted file mode 100644 index b6595de..0000000 --- a/.changes/fix-doc-links.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"tracing": patch -"tracing-js": patch ---- - -Fix broken rustdoc intra-doc links. diff --git a/.changes/fix-doctests.md b/.changes/fix-doctests.md deleted file mode 100644 index 7d3fdf0..0000000 --- a/.changes/fix-doctests.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"tracing": patch -"tracing-js": patch ---- - -Fix doctests to be compile-checked instead of ignored, eliminating "this example is not tested" warnings. diff --git a/.changes/fix-empty-call-stack.md b/.changes/fix-empty-call-stack.md deleted file mode 100644 index df418ca..0000000 --- a/.changes/fix-empty-call-stack.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"tracing": patch -"tracing-js": patch ---- - -In the event webview returns an empty callstack, tauri-plugin-tracing will now use an empty string as the callstack. diff --git a/.changes/fix-file-logging-docs.md b/.changes/fix-file-logging-docs.md deleted file mode 100644 index 92bca01..0000000 --- a/.changes/fix-file-logging-docs.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"tracing": patch -"tracing-js": patch ---- - -Fix documentation incorrectly stating file logging requires default subscriber. Add examples for custom subscriber file logging and early initialization patterns. diff --git a/.changes/flamegraph-custom-subscriber.md b/.changes/flamegraph-custom-subscriber.md deleted file mode 100644 index c598465..0000000 --- a/.changes/flamegraph-custom-subscriber.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -"tracing": minor -"tracing-js": minor ---- - -Add flamegraph support for custom subscribers and early initialization: -- `create_flame_layer_with_path()` creates a flame layer without requiring an AppHandle -- `FlameGuard` struct holds the flush guard and output path -- `FlameExt` trait adds `register_flamegraph()` to AppHandle for late registration - -This enables initializing tracing before Tauri starts while still supporting frontend flamegraph generation. diff --git a/.changes/inclue-window-name-in-tracing-logs.md b/.changes/inclue-window-name-in-tracing-logs.md deleted file mode 100644 index 4db2122..0000000 --- a/.changes/inclue-window-name-in-tracing-logs.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"tracing": patch -"tracing-js": patch ---- - -Include window name in tracing logs. diff --git a/.changes/move-to-github-packages.md b/.changes/move-to-github-packages.md deleted file mode 100644 index 0248462..0000000 --- a/.changes/move-to-github-packages.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -tracing-js: patch -tracing: patch ---- - -Move NPM package to GitHub packages. diff --git a/.changes/patch-various-bugs.md b/.changes/patch-various-bugs.md deleted file mode 100644 index 5cb90da..0000000 --- a/.changes/patch-various-bugs.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -tracing: patch -tracing-js: patch ---- - -Fix various bugs that have popped up in testing. diff --git a/.changes/pre.json b/.changes/pre.json deleted file mode 100644 index aca6dc6..0000000 --- a/.changes/pre.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "tag": "canary", - "changes": [ - ".changes/add-custom-layers.md", - ".changes/add-documentation.md", - ".changes/add-file-logging.md", - ".changes/add-filter.md", - ".changes/add-flamegraph-permissions.md", - ".changes/add-flamegraph.md", - ".changes/add-format.md", - ".changes/add-log-rotation.md", - ".changes/add-max-file-size.md", - ".changes/add-release-channel-checking-to-ci.md", - ".changes/add-specta.md", - ".changes/add-strip-ansi-writer.md", - ".changes/add-target-filters.md", - ".changes/add-targets-api.md", - ".changes/add-timezone-strategy.md", - ".changes/add-timing.md", - ".changes/add-webview-layer.md", - ".changes/auto-docs-upload.md", - ".changes/deny-unwrap-lints.md", - ".changes/fine-tune-ci-workflows.md", - ".changes/fix-doc-links.md", - ".changes/fix-doctests.md", - ".changes/fix-empty-call-stack.md", - ".changes/fix-file-logging-docs.md", - ".changes/flamegraph-custom-subscriber.md", - ".changes/flamegraph-docs-clarification.md", - ".changes/inclue-window-name-in-tracing-logs.md", - ".changes/move-to-github-packages.md", - ".changes/patch-various-bugs.md", - ".changes/readme-update.md", - ".changes/remove-kellnr-config.md", - ".changes/set-up-publish-jobs.md", - ".changes/shorten-readme.md", - ".changes/skip-version.md", - ".changes/switch-to-crates-io.md", - ".changes/takeover-console.md", - ".changes/update-tauri-dependencies.md", - ".changes/update-timing-behavior.md", - ".changes/use-async-mutex.md", - ".changes/use-default-subscriber.md", - ".changes/use-npm-oidc.md", - ".changes/use-sync-methods-for-logs.md" - ] -} diff --git a/.changes/readme-update.md b/.changes/readme-update.md deleted file mode 100644 index 744ef5f..0000000 --- a/.changes/readme-update.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"tracing": patch -"tracing-js": patch ---- - -Rewrote README with comprehensive documentation including installation instructions, quick start guide, feature documentation with code examples, and JavaScript API reference. diff --git a/.changes/release-0.2.0.md b/.changes/release-0.2.0.md new file mode 100644 index 0000000..62a36d1 --- /dev/null +++ b/.changes/release-0.2.0.md @@ -0,0 +1,21 @@ +--- +"tracing": minor +"tracing-js": minor +--- + +Release 0.2.0 stable. + +**Highlights:** +- Add `flamegraph` feature for performance profiling with flamegraph/flamechart generation +- Add `WebviewLayer` for custom subscriber setups +- Add file logging with rotation (`with_file_logging()`, `with_rotation()`, `with_max_file_size()`) +- Add `StripAnsiWriter` for clean file output when using colored terminal output +- Add custom filter support (`filter()`) and custom layer support (`with_layer()`) +- Add format options (`with_format()`, `with_file()`, `with_line_number()`, etc.) +- Add timezone strategy for log timestamps +- Add per-target log level filtering (`with_target()`) +- Add `takeoverConsole()` for full console integration (JS → Rust → browser) +- Add `interceptConsole()` and `attachConsole()` for flexible console routing +- Add early initialization support for flamegraph (`create_flame_layer_with_path()`) +- Add clippy lints to deny `unwrap()`/`expect()` in production code +- Remove `timing` feature (use native `console.time()` or tracing spans instead) diff --git a/.changes/set-up-publish-jobs.md b/.changes/set-up-publish-jobs.md deleted file mode 100644 index 427f1fa..0000000 --- a/.changes/set-up-publish-jobs.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"tracing": patch -"tracing-js": patch ---- - -Set up publishing to kellnr registry and npm via covector. Add CI jobs for linting and formatting. Adhere to tauri-plugin repo standards wherever practical. diff --git a/.changes/skip-version.md b/.changes/skip-version.md deleted file mode 100644 index 29e98cf..0000000 --- a/.changes/skip-version.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -tracing: patch -tracing-js: patch ---- - -Skipping a version previously published to satisfy NPM publishing rules. diff --git a/.changes/takeover-console.md b/.changes/takeover-console.md deleted file mode 100644 index 08e7320..0000000 --- a/.changes/takeover-console.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"tracing": minor -"tracing-js": minor ---- - -Add `takeoverConsole()` function that completely takes over the webview console, routing all logs through Rust tracing and back to the original console methods. diff --git a/.changes/update-tauri-dependencies.md b/.changes/update-tauri-dependencies.md deleted file mode 100644 index 39874d4..0000000 --- a/.changes/update-tauri-dependencies.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -"tracing": patch -"tracing-js": patch ---- - -- Update Tauri to version 2.9.3 -- Update npm dependencies to latest -- Update example to latest implementation - diff --git a/.changes/update-timing-behavior.md b/.changes/update-timing-behavior.md deleted file mode 100644 index f603cd8..0000000 --- a/.changes/update-timing-behavior.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -tracing: patch -tracing-js: patch ---- - -Update examples and Cargo dependencies. diff --git a/.changes/use-async-mutex.md b/.changes/use-async-mutex.md deleted file mode 100644 index 00a4dca..0000000 --- a/.changes/use-async-mutex.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"tracing": patch -"tracing-js": patch ---- - -Fix a lockup possibly caused by the timings' feature's use of a sync mutex. diff --git a/.changes/use-default-subscriber.md b/.changes/use-default-subscriber.md deleted file mode 100644 index 6fd4004..0000000 --- a/.changes/use-default-subscriber.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -tracing: patch -tracing-js: patch ---- - -Refine webview path, change initialization from global to default subscriber diff --git a/.changes/use-npm-oidc.md b/.changes/use-npm-oidc.md deleted file mode 100644 index aa41e91..0000000 --- a/.changes/use-npm-oidc.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -tracing: patch -tracing-js: patch ---- - -Use OIDC publishing for NPM diff --git a/.changes/use-sync-methods-for-logs.md b/.changes/use-sync-methods-for-logs.md deleted file mode 100644 index 80f880d..0000000 --- a/.changes/use-sync-methods-for-logs.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"tracing": patch -"tracing-js": patch ---- - -Use sync methods to better emulate the JavaScript console. diff --git a/Cargo.toml b/Cargo.toml index 3c731ef..9b247e6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ authors = ["Flight Science"] name = "tauri-plugin-tracing" license = "MIT" edition = "2024" -version = "0.2.0-canary.21" +version = "0.2.0" repository = "https://github.com/fltsci/tauri-plugin-tracing" description = "Use the tracing crate in your Tauri app" links = "tauri-plugin-tracing" diff --git a/package.json b/package.json index e7eb577..ccddb2c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@fltsci/tauri-plugin-tracing", - "version": "0.2.0-canary.21", + "version": "0.2.0", "author": "Flight Science", "description": "", "type": "module",