diff --git a/CHANGELOG.md b/CHANGELOG.md index b0566fb..44e753d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## \[2.0.0-rc.0] + +- [`9887d1`](https://github.com/tauri-apps/plugins-workspace/commit/9887d14bd0e971c4c0f5c1188fc4005d3fc2e29e) Update to tauri RC. + ## \[2.0.0-beta.8] - [`99d6ac0f`](https://github.com/tauri-apps/plugins-workspace/commit/99d6ac0f9506a6a4a1aa59c728157190a7441af6) ([#1606](https://github.com/tauri-apps/plugins-workspace/pull/1606) by [@FabianLars](https://github.com/tauri-apps/plugins-workspace/../../FabianLars)) The JS packages now specify the *minimum* `@tauri-apps/api` version instead of a single exact version. @@ -75,4 +79,4 @@ - [`717ae67`](https://github.com/tauri-apps/plugins-workspace/commit/717ae670978feb4492fac1f295998b93f2b9347f)([#371](https://github.com/tauri-apps/plugins-workspace/pull/371)) First v2 alpha release! ae67\`]\(https://github.com/tauri-apps/plugins-workspace/commit/717ae670978feb4492fac1f295998b93f2b9347f)([#371](https://github.com/tauri-apps/plugins-workspace/pull/371)) First v2 alpha release! 717ae670978feb4492fac1f295998b93f2b9347f)([#371](https://github.com/tauri-apps/plugins-workspace/pull/371)) First v2 alpha release! -om/tauri-apps/plugins-workspace/pull/371)) First v2 alpha release! + om/tauri-apps/plugins-workspace/pull/371)) First v2 alpha release! diff --git a/Cargo.toml b/Cargo.toml index 24b64ef..3baba5a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-process" -version = "2.0.0-beta.9" +version = "2.0.0-rc.0" description = "Access the current process of your Tauri application." edition = { workspace = true } authors = { workspace = true } diff --git a/README.md b/README.md index 515539d..6b8c650 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ Install the Core plugin by adding the following to your `Cargo.toml` file: ```toml [dependencies] -tauri-plugin-process = "2.0.0-beta" +tauri-plugin-process = "2.0.0-rc" # alternatively with Git: tauri-plugin-process = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v2" } ``` diff --git a/node_modules/@tauri-apps/api b/node_modules/@tauri-apps/api index 1cbab3c..1f55f25 120000 --- a/node_modules/@tauri-apps/api +++ b/node_modules/@tauri-apps/api @@ -1 +1 @@ -../../../../node_modules/.pnpm/@tauri-apps+api@2.0.0-beta.16/node_modules/@tauri-apps/api \ No newline at end of file +../../../../node_modules/.pnpm/@tauri-apps+api@2.0.0-rc.0/node_modules/@tauri-apps/api \ No newline at end of file diff --git a/package.json b/package.json index 70c77cc..5821438 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@tauri-apps/plugin-process", - "version": "2.0.0-beta.8", + "version": "2.0.0-rc.0", "license": "MIT or APACHE-2.0", "authors": [ "Tauri Programme within The Commons Conservancy" @@ -24,6 +24,6 @@ "LICENSE" ], "dependencies": { - "@tauri-apps/api": "^2.0.0-beta.16" + "@tauri-apps/api": "^2.0.0-rc.0" } }