Quellcode durchsuchen

Apply Version Updates From Current Changes (#1486)

* apply version updates

* adjust versions to beta-rc

Co-authored-by: jbolda <jbolda@users.noreply.github.com>
Co-authored-by: Jacob Bolda <me@jacobbolda.com>
github-actions[bot] vor 4 Jahren
Ursprung
Commit
e267ebf1f1

+ 4 - 7
.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"
     }
   }
 }

+ 0 - 10
.changes/no-private-params-trait.md

@@ -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

+ 0 - 5
.changes/update-wry.md

@@ -1,5 +0,0 @@
----
-"tauri": patch
----
-
-Updated `wry`, fixing an issue with the draggable region.

+ 8 - 0
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<T>.
   - [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`.

+ 1 - 1
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"