diff --git a/.changes/config.json b/.changes/config.json index 76180af9e48..55c324b6afb 100644 --- a/.changes/config.json +++ b/.changes/config.json @@ -175,13 +175,6 @@ } ] }, - "create-tauri-app": { - "path": "./tooling/create-tauri-app", - "manager": "javascript", - "dependencies": [ - "cli.js" - ] - }, "tauri-utils": { "path": "./core/tauri-utils", "manager": "rust" @@ -208,6 +201,10 @@ "api", "tauri-macros" ] + }, + "create-tauri-app": { + "path": "./tooling/create-tauri-app", + "manager": "javascript" } } } \ No newline at end of file diff --git a/.changes/no-private-params-trait.md b/.changes/no-private-params-trait.md deleted file mode 100644 index eacec3eba02..00000000000 --- a/.changes/no-private-params-trait.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -"tauri": patch ---- - -internal refactoring of `Params` to allow for easier usage without a private trait with only 1 implementor. - -`ParamsPrivate` -> `ParamsBase` -`ManagerPrivate` -> `ManagerBase` -(new) `Args`, crate only. Now implements `Params`/`ParamsBase`. -`App` and `Window` use `WindowManager` directly diff --git a/.changes/update-wry.md b/.changes/update-wry.md deleted file mode 100644 index 6aa99928f3e..00000000000 --- a/.changes/update-wry.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"tauri": patch ---- - -Updated `wry`, fixing an issue with the draggable region. diff --git a/core/tauri/CHANGELOG.md b/core/tauri/CHANGELOG.md index a8fa79e2359..b67892ff285 100644 --- a/core/tauri/CHANGELOG.md +++ b/core/tauri/CHANGELOG.md @@ -2,6 +2,14 @@ ## \[1.0.0-beta-rc.0] +- internal refactoring of `Params` to allow for easier usage without a private trait with only 1 implementor. + `ParamsPrivate` -> `ParamsBase` + `ManagerPrivate` -> `ManagerBase` + (new) `Args`, crate only. Now implements `Params`/`ParamsBase`. + `App` and `Window` use `WindowManager` directly +- [ec27ca8](https://www.github.com/tauri-apps/tauri/commit/ec27ca81fe721e0b08ed574073547250b7a8153a) refactor(tauri): remove private params trait methods ([#1484](https://www.github.com/tauri-apps/tauri/pull/1484)) on 2021-04-14 +- Updated `wry`, fixing an issue with the draggable region. + - [f2d24ef](https://www.github.com/tauri-apps/tauri/commit/f2d24ef2fbd95ec7d3433ba651964f4aa3b7f48c) chore(deps): update wry ([#1482](https://www.github.com/tauri-apps/tauri/pull/1482)) on 2021-04-14 - Now Tauri commands always returns Promise. - [ea73325](https://www.github.com/tauri-apps/tauri/commit/ea7332539d100bd63f93396101ffa01ff73c924b) refactor(core): all API are now promise based ([#1239](https://www.github.com/tauri-apps/tauri/pull/1239)) on 2021-02-16 - Rename macOS bundle settings from `osx` to `macOS`. diff --git a/tooling/cli.rs/Cargo.toml b/tooling/cli.rs/Cargo.toml index b3fc150c29d..a07fc03cedb 100644 --- a/tooling/cli.rs/Cargo.toml +++ b/tooling/cli.rs/Cargo.toml @@ -10,7 +10,7 @@ license = "Apache-2.0 OR MIT" homepage = "https://tauri.studio" repository = "https://github.com/tauri-apps/tauri" description = "Command line interface for building Tauri apps" -include = ["src/", "/templates", "MergeModules/", "*.json", "*.rs"] +include = [ "src/", "/templates", "MergeModules/", "*.json", "*.rs" ] [[bin]] name = "cargo-tauri"