From 9cfea9c3e1639b0f28914fbd71875891e31d3560 Mon Sep 17 00:00:00 2001 From: FabianLars Date: Mon, 10 Jul 2023 09:23:09 +0000 Subject: [PATCH] publish new versions --- .changes/persisted-scope-save-asset.md | 5 ---- plugins/persisted-scope/CHANGELOG.md | 5 ++++ plugins/persisted-scope/Cargo.toml | 38 ++++++++++++++++++-------- 3 files changed, 32 insertions(+), 16 deletions(-) delete mode 100644 .changes/persisted-scope-save-asset.md diff --git a/.changes/persisted-scope-save-asset.md b/.changes/persisted-scope-save-asset.md deleted file mode 100644 index 5b4b933a..00000000 --- a/.changes/persisted-scope-save-asset.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"persisted-scope": patch ---- - -Split up fs and asset scopes. **This will reset the asset protocol scope once!** diff --git a/plugins/persisted-scope/CHANGELOG.md b/plugins/persisted-scope/CHANGELOG.md index 91e6b20e..c76f63d3 100644 --- a/plugins/persisted-scope/CHANGELOG.md +++ b/plugins/persisted-scope/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## \[0.1.3] + +- Split up fs and asset scopes. **This will reset the asset protocol scope once!** + - [ad30286](https://github.com/tauri-apps/plugins-workspace/commit/ad3028646c96ed213a2f483823ffdc3c17b5fc1e) fix(persisted-scope): separately save asset protocol patterns ([#459](https://github.com/tauri-apps/plugins-workspace/pull/459)) on 2023-07-10 + ## \[0.1.2] - Fix usage of directory patterns by removing glob asterisks at the end before allowing/forbidding them. This was causing them to be escaped, and so undesirable paths were allowed/forbidden while polluting the `.persisted_scope` file. diff --git a/plugins/persisted-scope/Cargo.toml b/plugins/persisted-scope/Cargo.toml index eafad0bd..2d71f244 100644 --- a/plugins/persisted-scope/Cargo.toml +++ b/plugins/persisted-scope/Cargo.toml @@ -1,22 +1,38 @@ [package] name = "tauri-plugin-persisted-scope" -version = "0.1.2" +version = "0.1.3" description = "Save filesystem and asset scopes and restore them when the app is reopened." -authors.workspace = true -license.workspace = true -edition.workspace = true -rust-version.workspace = true -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + [package.authors] + workspace = true + + [package.license] + workspace = true + + [package.edition] + workspace = true + + [package.rust-version] + workspace = true [dependencies] -serde.workspace = true -serde_json.workspace = true -tauri.workspace = true -log.workspace = true -thiserror.workspace = true aho-corasick = "1.0" bincode = "1" + [dependencies.serde] + workspace = true + + [dependencies.serde_json] + workspace = true + + [dependencies.tauri] + workspace = true + + [dependencies.log] + workspace = true + + [dependencies.thiserror] + workspace = true + [features] protocol-asset = [ "tauri/protocol-asset" ]