Explorar el Código

apply version updates (#1503)

Co-authored-by: jbolda <jbolda@users.noreply.github.com>
github-actions[bot] hace 4 años
padre
commit
a202b68447

+ 12 - 1
.changes/pre.json

@@ -1,4 +1,15 @@
 {
   "tag": "beta-rc",
-  "changes": [".changes/beta-rc.md"]
+  "changes": [
+    ".changes/beta-rc.md",
+    ".changes/cli.rs-camelcase-rename.md",
+    ".changes/clr.rs-fix-tauri-info.md",
+    ".changes/cta-remove-lodash.md",
+    ".changes/cta-remove-tauri-from-vanilla.md",
+    ".changes/cta-tauri-script.md",
+    ".changes/event-once.md",
+    ".changes/fix-js-api-import.md",
+    ".changes/nested-events.md",
+    ".changes/sync-metadata.md"
+  ]
 }

+ 25 - 0
core/tauri/CHANGELOG.md

@@ -1,5 +1,30 @@
 # Changelog
 
+## \[1.0.0-beta-rc.2]
+
+- Prevent "once" events from being able to be called multiple times.
+
+- `Window::trigger(/*...*/)` is now properly `pub` instead of `pub(crate)`.
+
+- `Manager::once_global(/*...*/)` now returns an `EventHandler`.
+
+- `Window::once(/*...*/)` now returns an `EventHandler`.
+
+- (internal) `event::Listeners::trigger(/*...*/)` now handles removing "once" events.
+
+- [ece243d](https://www.github.com/tauri-apps/tauri/commit/ece243d17c9c3ef8d2ba8e3b25b872aa6ea0b6ab) don't remove once listener on new thread ([#1506](https://www.github.com/tauri-apps/tauri/pull/1506)) on 2021-04-14
+
+- TS was wrongly re-exporting the module.
+  - [fcb3b48](https://www.github.com/tauri-apps/tauri/commit/fcb3b4857efa17d2a3717f32457e88b24520cc9b) fix: [#1512](https://www.github.com/tauri-apps/tauri/pull/1512) ([#1517](https://www.github.com/tauri-apps/tauri/pull/1517)) on 2021-04-19
+
+- Window and global events can now be nested inside event handlers. They will run as soon
+  as the event handler closure is finished in the order they were called. Previously, calling
+  events inside an event handler would produce a deadlock.
+
+Note: The order that event handlers are called when triggered is still non-deterministic.
+
+- [e447b8e](https://www.github.com/tauri-apps/tauri/commit/e447b8e0e6198c8972bae25625bb409850cb686b) allow event listeners to be nested ([#1513](https://www.github.com/tauri-apps/tauri/pull/1513)) on 2021-04-15
+
 ## \[1.0.0-beta-rc.1]
 
 - Missing the `files` property in the package.json which mean that the `dist` directory was not published and used.

+ 1 - 1
core/tauri/Cargo.toml

@@ -1,6 +1,6 @@
 [package]
 name = "tauri"
-version = "1.0.0-beta-rc.1"
+version = "1.0.0-beta-rc.2"
 authors = [ "Tauri Programme within The Commons Conservancy" ]
 categories = [ "gui", "web-programming" ]
 license = "Apache-2.0 OR MIT"

+ 20 - 0
tooling/cli.js/CHANGELOG.md

@@ -1,5 +1,25 @@
 # Changelog
 
+## \[1.0.0-beta-rc.2]
+
+- Add missing camelcase rename for config
+  - Bumped due to a bump in cli.rs.
+  - [bdf7072](https://www.github.com/tauri-apps/tauri/commit/bdf707285e3d307ab083009c274ccb56d5053ff2) fix(cli.rs/info): add missing camelCase rename ([#1505](https://www.github.com/tauri-apps/tauri/pull/1505)) on 2021-04-14
+
+- Fix `tauri info`
+
+- Properly detect `yarn` and `npm` versions on windows.
+
+- Fix a panic caused by a wrong field name in `metadata.json`
+
+- Bumped due to a bump in cli.rs.
+
+- [71666e9](https://www.github.com/tauri-apps/tauri/commit/71666e9f9cfb5499a727b3f95182e89073f67d7b) fix(cli.rs): fix panic & use `cmd` to run `yarn`&`npm` on windows ([#1511](https://www.github.com/tauri-apps/tauri/pull/1511)) on 2021-04-17
+
+- Sync `metadata.json` via script to update version reference to cli.js, tauri (core) and tauri-build.
+  - Bumped due to a bump in cli.rs.
+  - [1f64927](https://www.github.com/tauri-apps/tauri/commit/1f64927362ef20761d7cd3591281519eb292aa33) chore: sync cli.rs metadata.json file versions ([#1534](https://www.github.com/tauri-apps/tauri/pull/1534)) on 2021-04-19
+
 ## \[1.0.0-beta-rc.1]
 
 - Missing the `files` property in the package.json which mean that the `dist` directory was not published and used.

+ 1 - 1
tooling/cli.js/package.json

@@ -1,6 +1,6 @@
 {
   "name": "@tauri-apps/cli",
-  "version": "1.0.0-beta-rc.1",
+  "version": "1.0.0-beta-rc.2",
   "description": "Command line interface for building Tauri apps",
   "bin": {
     "tauri": "./bin/tauri.js"

+ 16 - 0
tooling/cli.rs/CHANGELOG.md

@@ -1,5 +1,21 @@
 # Changelog
 
+## \[1.0.0-beta-rc.2]
+
+- Add missing camelcase rename for config
+  - [bdf7072](https://www.github.com/tauri-apps/tauri/commit/bdf707285e3d307ab083009c274ccb56d5053ff2) fix(cli.rs/info): add missing camelCase rename ([#1505](https://www.github.com/tauri-apps/tauri/pull/1505)) on 2021-04-14
+
+- Fix `tauri info`
+
+- Properly detect `yarn` and `npm` versions on windows.
+
+- Fix a panic caused by a wrong field name in `metadata.json`
+
+- [71666e9](https://www.github.com/tauri-apps/tauri/commit/71666e9f9cfb5499a727b3f95182e89073f67d7b) fix(cli.rs): fix panic & use `cmd` to run `yarn`&`npm` on windows ([#1511](https://www.github.com/tauri-apps/tauri/pull/1511)) on 2021-04-17
+
+- Sync `metadata.json` via script to update version reference to cli.js, tauri (core) and tauri-build.
+  - [1f64927](https://www.github.com/tauri-apps/tauri/commit/1f64927362ef20761d7cd3591281519eb292aa33) chore: sync cli.rs metadata.json file versions ([#1534](https://www.github.com/tauri-apps/tauri/pull/1534)) on 2021-04-19
+
 ## \[1.0.0-beta-rc.1]
 
 - Missing the `files` property in the package.json which mean that the `dist` directory was not published and used.

+ 1 - 1
tooling/cli.rs/Cargo.toml

@@ -2,7 +2,7 @@ workspace = { }
 
 [package]
 name = "tauri-cli"
-version = "1.0.0-beta-rc.1"
+version = "1.0.0-beta-rc.2"
 authors = [ "Tauri Programme within The Commons Conservancy" ]
 edition = "2018"
 categories = [ "gui", "web-programming" ]

+ 2 - 2
tooling/cli.rs/metadata.json

@@ -1,8 +1,8 @@
 {
   "cli.js": {
-    "version": "1.0.0-beta-rc.1",
+    "version": "1.0.0-beta-rc.2",
     "node": ">= 10.17.0"
   },
-  "tauri": "1.0.0-beta-rc.1",
+  "tauri": "1.0.0-beta-rc.2",
   "tauri-build": "1.0.0-beta-rc.0"
 }

+ 11 - 0
tooling/create-tauri-app/CHANGELOG.md

@@ -1,5 +1,16 @@
 # Changelog
 
+## \[1.0.0-beta-rc.3]
+
+- Remove `lodash` dependency and replace with es6 builtins
+  - [edab7a6](https://www.github.com/tauri-apps/tauri/commit/edab7a66864d21b51694bf8771d21627b526c2b9) chore(deps): remove lodash from create-tauri-app ([#1532](https://www.github.com/tauri-apps/tauri/pull/1532)) on 2021-04-18
+- Remove `tauri` dependency from vanilla recipe
+  - [3998046](https://www.github.com/tauri-apps/tauri/commit/399804648924139c6240351a76812a3071b51f65) fix(cta): remove `tauri` dep from vanilla recipe ([#1502](https://www.github.com/tauri-apps/tauri/pull/1502)) on 2021-04-15
+- Fix adding `tauri` script to package.json
+  - [6c00e88](https://www.github.com/tauri-apps/tauri/commit/6c00e88e0ffa10eb7eecc312d66c5dde7dc03d0b) fix(cta): fix adding `tauri` script to package.json ([#1501](https://www.github.com/tauri-apps/tauri/pull/1501)) on 2021-04-15
+  - [345f2db](https://www.github.com/tauri-apps/tauri/commit/345f2dbfc545427750c08351d1b98e966b2436c0) Apply Version Updates From Current Changes ([#1499](https://www.github.com/tauri-apps/tauri/pull/1499)) on 2021-04-14
+  - [098b729](https://www.github.com/tauri-apps/tauri/commit/098b729e677dc5dc322f22a6cbd5a652a8dfa1b0) chore: CTA version was decremented, fix and adjust changelog to compensate ([#1530](https://www.github.com/tauri-apps/tauri/pull/1530)) on 2021-04-18
+
 ## \[1.0.0-beta-rc.2]
 
 - CTA also needs the template directory published as it doesn't get bundled into the `dist` directory.

+ 1 - 1
tooling/create-tauri-app/package.json

@@ -1,6 +1,6 @@
 {
   "name": "create-tauri-app",
-  "version": "1.0.0-beta-rc.2",
+  "version": "1.0.0-beta-rc.3",
   "description": "Jump right into a Tauri App!",
   "bin": {
     "create-tauri-app": "./bin/create-tauri-app.js"