Skip to content

Commit

Permalink
apply version updates
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasfernog committed Mar 13, 2022
1 parent c81534e commit b621a0b
Show file tree
Hide file tree
Showing 23 changed files with 101 additions and 31 deletions.
7 changes: 7 additions & 0 deletions .changes/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@
".changes/cli-private-key-pwd-panic.md",
".changes/cli-runner-args.md",
".changes/cli-runner-error-message.md",
".changes/cli-template-minimum-mac-system-version.md",
".changes/cli.js-cjs-output.md",
".changes/cli.js-fix-ico.md",
".changes/cli.js-improve-error.md",
Expand All @@ -68,6 +69,7 @@
".changes/cli.rs-use-tauri-utils.md",
".changes/cli.rs-validate-dist-dir.md",
".changes/cli.rs-wix-license.md",
".changes/colorful-cli.md",
".changes/command-feature-flag.md",
".changes/command-output-carriage-return.md",
".changes/consistent-event-name-usage.md",
Expand All @@ -85,6 +87,7 @@
".changes/emit-and-trigger-tauri-events.md",
".changes/emit-window-created-backend.md",
".changes/enable-linux-cookie-persistence.md",
".changes/enhance-minimum-system-version-deserialization.md",
".changes/expose-escape-json-string.md",
".changes/fix-asset-protocol-panicking.md",
".changes/fix-block-on-runtime.md",
Expand All @@ -93,6 +96,8 @@
".changes/fix-cli-signer-sign-cmd.md",
".changes/fix-cli.js-windows-freezing.md",
".changes/fix-close-requested-js-event.md",
".changes/fix-csp-fallback-route.md",
".changes/fix-csp-linux.md",
".changes/fix-deadlock-create-window-from-menu.md",
".changes/fix-deadlock-path-iter.md",
".changes/fix-default-freeze-prototype.md",
Expand Down Expand Up @@ -198,8 +203,10 @@
".changes/sidecar-runtime-rename.md",
".changes/sidecar-scope-improvement.md",
".changes/simplify-window-label-types.md",
".changes/state-debug.md",
".changes/streaming-small-file-fix.md",
".changes/strip.md",
".changes/tauri-build-default-anyhow-fmt.md",
".changes/template-csp-null.md",
".changes/tooling-fix-pnpm-info-error.md",
".changes/tray-set-menu.md",
Expand Down
5 changes: 5 additions & 0 deletions core/tauri-build/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## \[1.0.0-rc.5]

- Print error context on the `build` panic.
- [49546c52](https://www.github.com/tauri-apps/tauri/commit/49546c5269080f38d57365788eb2592bff8f6d10) feat(build): print error context ([#3644](https://www.github.com/tauri-apps/tauri/pull/3644)) on 2022-03-09

## \[1.0.0-rc.4]

- Parse window icons at compile time.
Expand Down
6 changes: 3 additions & 3 deletions core/tauri-build/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tauri-build"
version = "1.0.0-rc.4"
version = "1.0.0-rc.5"
authors = [ "Tauri Programme within The Commons Conservancy" ]
categories = [ "gui", "web-programming" ]
license = "Apache-2.0 OR MIT"
Expand All @@ -19,8 +19,8 @@ rustdoc-args = [ "--cfg", "doc_cfg" ]
[dependencies]
anyhow = "1"
quote = { version = "1", optional = true }
tauri-codegen = { version = "1.0.0-rc.3", path = "../tauri-codegen", optional = true }
tauri-utils = { version = "1.0.0-rc.3", path = "../tauri-utils", features = [ "build", "resources" ] }
tauri-codegen = { version = "1.0.0-rc.4", path = "../tauri-codegen", optional = true }
tauri-utils = { version = "1.0.0-rc.4", path = "../tauri-utils", features = [ "build", "resources" ] }
cargo_toml = "0.11"
serde_json = "1"

Expand Down
6 changes: 6 additions & 0 deletions core/tauri-codegen/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## \[1.0.0-rc.4]

- Use the default value for `MacConfig.minimumSystemVersion` if the value is set to an empty string.
- Bumped due to a bump in tauri-utils.
- [c81534eb](https://www.github.com/tauri-apps/tauri/commit/c81534ebd873c358e0346c7949aeb171803149a5) feat(cli): use default macOS minimum system version when it is empty ([#3658](https://www.github.com/tauri-apps/tauri/pull/3658)) on 2022-03-13

## \[1.0.0-rc.3]

- Parse window icons at compile time.
Expand Down
4 changes: 2 additions & 2 deletions core/tauri-codegen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tauri-codegen"
version = "1.0.0-rc.3"
version = "1.0.0-rc.4"
authors = [ "Tauri Programme within The Commons Conservancy" ]
categories = [ "gui", "web-programming" ]
license = "Apache-2.0 OR MIT"
Expand All @@ -20,7 +20,7 @@ proc-macro2 = "1"
quote = "1"
serde = { version = "1", features = [ "derive" ] }
serde_json = "1"
tauri-utils = { version = "1.0.0-rc.3", path = "../tauri-utils", features = [ "build" ] }
tauri-utils = { version = "1.0.0-rc.4", path = "../tauri-utils", features = [ "build" ] }
thiserror = "1"
walkdir = "2"
zstd = { version = "0.10", optional = true }
Expand Down
6 changes: 6 additions & 0 deletions core/tauri-macros/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## \[1.0.0-rc.4]

- Use the default value for `MacConfig.minimumSystemVersion` if the value is set to an empty string.
- Bumped due to a bump in tauri-utils.
- [c81534eb](https://www.github.com/tauri-apps/tauri/commit/c81534ebd873c358e0346c7949aeb171803149a5) feat(cli): use default macOS minimum system version when it is empty ([#3658](https://www.github.com/tauri-apps/tauri/pull/3658)) on 2022-03-13

## \[1.0.0-rc.3]

- Parse window icons at compile time.
Expand Down
6 changes: 3 additions & 3 deletions core/tauri-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tauri-macros"
version = "1.0.0-rc.3"
version = "1.0.0-rc.4"
authors = [ "Tauri Programme within The Commons Conservancy" ]
categories = [ "gui", "os", "filesystem", "web-programming" ]
license = "Apache-2.0 OR MIT"
Expand All @@ -20,8 +20,8 @@ proc-macro2 = "1"
quote = "1"
syn = { version = "1", features = [ "full" ] }
heck = "0.4"
tauri-codegen = { version = "1.0.0-rc.3", default-features = false, path = "../tauri-codegen" }
tauri-utils = { version = "1.0.0-rc.3", path = "../tauri-utils" }
tauri-codegen = { version = "1.0.0-rc.4", default-features = false, path = "../tauri-codegen" }
tauri-utils = { version = "1.0.0-rc.4", path = "../tauri-utils" }

[features]
custom-protocol = [ ]
Expand Down
6 changes: 6 additions & 0 deletions core/tauri-runtime-wry/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## \[0.3.4]

- Use the default value for `MacConfig.minimumSystemVersion` if the value is set to an empty string.
- Bumped due to a bump in tauri-utils.
- [c81534eb](https://www.github.com/tauri-apps/tauri/commit/c81534ebd873c358e0346c7949aeb171803149a5) feat(cli): use default macOS minimum system version when it is empty ([#3658](https://www.github.com/tauri-apps/tauri/pull/3658)) on 2022-03-13

## \[0.3.3]

- Fixes a deadlock on the `Focused` event when the window is not visible.
Expand Down
6 changes: 3 additions & 3 deletions core/tauri-runtime-wry/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tauri-runtime-wry"
version = "0.3.3"
version = "0.3.4"
authors = [ "Tauri Programme within The Commons Conservancy" ]
categories = [ "gui", "web-programming" ]
license = "Apache-2.0 OR MIT"
Expand All @@ -14,8 +14,8 @@ readme = "README.md"

[dependencies]
wry = { version = "0.13.3", default-features = false, features = [ "file-drop", "protocol" ] }
tauri-runtime = { version = "0.3.3", path = "../tauri-runtime" }
tauri-utils = { version = "1.0.0-rc.3", path = "../tauri-utils" }
tauri-runtime = { version = "0.3.4", path = "../tauri-runtime" }
tauri-utils = { version = "1.0.0-rc.4", path = "../tauri-utils" }
uuid = { version = "0.8.2", features = [ "v4" ] }

[target."cfg(windows)".dependencies]
Expand Down
6 changes: 6 additions & 0 deletions core/tauri-runtime/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## \[0.3.4]

- Use the default value for `MacConfig.minimumSystemVersion` if the value is set to an empty string.
- Bumped due to a bump in tauri-utils.
- [c81534eb](https://www.github.com/tauri-apps/tauri/commit/c81534ebd873c358e0346c7949aeb171803149a5) feat(cli): use default macOS minimum system version when it is empty ([#3658](https://www.github.com/tauri-apps/tauri/pull/3658)) on 2022-03-13

## \[0.3.3]

- **Breaking change:** Move `ico` and `png` parsing behind `icon-ico` and `icon-png` Cargo features.
Expand Down
4 changes: 2 additions & 2 deletions core/tauri-runtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tauri-runtime"
version = "0.3.3"
version = "0.3.4"
authors = [ "Tauri Programme within The Commons Conservancy" ]
categories = [ "gui", "web-programming" ]
license = "Apache-2.0 OR MIT"
Expand All @@ -26,7 +26,7 @@ targets = [
serde = { version = "1.0", features = [ "derive" ] }
serde_json = "1.0"
thiserror = "1.0"
tauri-utils = { version = "1.0.0-rc.3", path = "../tauri-utils" }
tauri-utils = { version = "1.0.0-rc.4", path = "../tauri-utils" }
uuid = { version = "0.8.2", features = [ "v4" ] }
http = "0.2.4"
http-range = "0.1.4"
Expand Down
5 changes: 5 additions & 0 deletions core/tauri-utils/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## \[1.0.0-rc.4]

- Use the default value for `MacConfig.minimumSystemVersion` if the value is set to an empty string.
- [c81534eb](https://www.github.com/tauri-apps/tauri/commit/c81534ebd873c358e0346c7949aeb171803149a5) feat(cli): use default macOS minimum system version when it is empty ([#3658](https://www.github.com/tauri-apps/tauri/pull/3658)) on 2022-03-13

## \[1.0.0-rc.3]

- Use `is_symlink` API compatible with Rust v1.57 instead of std/fs/struct.Metadata.html#method.is_symlink.
Expand Down
2 changes: 1 addition & 1 deletion core/tauri-utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tauri-utils"
version = "1.0.0-rc.3"
version = "1.0.0-rc.4"
authors = [ "Tauri Programme within The Commons Conservancy" ]
license = "Apache-2.0 OR MIT"
homepage = "https://tauri.studio"
Expand Down
9 changes: 9 additions & 0 deletions core/tauri/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## \[1.0.0-rc.5]

- Properly apply the CSP when loading a route that fallbacks to index.html.
- [bcd43168](https://www.github.com/tauri-apps/tauri/commit/bcd43168a528dc4c54e28788430a93654c8fb452) fix(core): properly add CSP header to fallback routes ([#3641](https://www.github.com/tauri-apps/tauri/pull/3641)) on 2022-03-08
- Fix CSP usage on Linux when changing it via the `on_web_resource_request` handler.
- [f5efc248](https://www.github.com/tauri-apps/tauri/commit/f5efc248da511e0924c9673b947d5de7ef69ac45) fix(core): runtime CSP changes on Linux on 2022-03-07
- Implement `Debug` for `tauri::State`.
- [0b49dd56](https://www.github.com/tauri-apps/tauri/commit/0b49dd566dae21c4dcb1cf110115aab982a7dab6) impl Debug for State closes [#3676](https://www.github.com/tauri-apps/tauri/pull/3676) ([#3677](https://www.github.com/tauri-apps/tauri/pull/3677)) on 2022-03-12

## \[1.0.0-rc.4]

- Run `AppHandle` cleanup code before restarting the application on the `process > relaunch` API.
Expand Down
10 changes: 5 additions & 5 deletions core/tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ license = "Apache-2.0 OR MIT"
name = "tauri"
readme = "README.md"
repository = "https://github.com/tauri-apps/tauri"
version = "1.0.0-rc.4"
version = "1.0.0-rc.5"

[package.metadata.docs.rs]
no-default-features = true
Expand Down Expand Up @@ -52,10 +52,10 @@ url = { version = "2.2" }
anyhow = "1.0"
thiserror = "1.0"
once_cell = "1.9"
tauri-runtime = { version = "0.3.3", path = "../tauri-runtime" }
tauri-macros = { version = "1.0.0-rc.3", path = "../tauri-macros" }
tauri-utils = { version = "1.0.0-rc.3", path = "../tauri-utils" }
tauri-runtime-wry = { version = "0.3.3", path = "../tauri-runtime-wry", optional = true }
tauri-runtime = { version = "0.3.4", path = "../tauri-runtime" }
tauri-macros = { version = "1.0.0-rc.4", path = "../tauri-macros" }
tauri-utils = { version = "1.0.0-rc.4", path = "../tauri-utils" }
tauri-runtime-wry = { version = "0.3.4", path = "../tauri-runtime-wry", optional = true }
rand = "0.8"
semver = "1.0"
serde_repr = "0.1"
Expand Down
6 changes: 6 additions & 0 deletions tooling/bundler/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## \[1.0.0-rc.4]

- Use the default value for `MacConfig.minimumSystemVersion` if the value is set to an empty string.
- Bumped due to a bump in tauri-utils.
- [c81534eb](https://www.github.com/tauri-apps/tauri/commit/c81534ebd873c358e0346c7949aeb171803149a5) feat(cli): use default macOS minimum system version when it is empty ([#3658](https://www.github.com/tauri-apps/tauri/pull/3658)) on 2022-03-13

## \[1.0.0-rc.3]

- Added `tsp` config option under `tauri > bundle > windows`, which enables Time-Stamp Protocol (RFC 3161) for the timestamping
Expand Down
4 changes: 2 additions & 2 deletions tooling/bundler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ workspace = { }

[package]
name = "tauri-bundler"
version = "1.0.0-rc.3"
version = "1.0.0-rc.4"
authors = [
"George Burton <burtonageo@gmail.com>",
"Tauri Programme within The Commons Conservancy"
Expand All @@ -22,7 +22,7 @@ exclude = [
]

[dependencies]
tauri-utils = { version = "1.0.0-rc.3", path = "../../core/tauri-utils", features = [ "resources" ] }
tauri-utils = { version = "1.0.0-rc.4", path = "../../core/tauri-utils", features = [ "resources" ] }
ar = "0.9.0"
icns = "0.3"
image = "0.24.1"
Expand Down
7 changes: 7 additions & 0 deletions tooling/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## \[1.0.0-rc.8]

- Remove `minimumSystemVersion: null` from the application template configuration.
- [c81534eb](https://www.github.com/tauri-apps/tauri/commit/c81534ebd873c358e0346c7949aeb171803149a5) feat(cli): use default macOS minimum system version when it is empty ([#3658](https://www.github.com/tauri-apps/tauri/pull/3658)) on 2022-03-13
- Improve readability of the `info` subcommand output.
- [49d2f13f](https://www.github.com/tauri-apps/tauri/commit/49d2f13fc07d763d5de9bf4b19d00c901776c11d) feat(cli): colorful cli ([#3635](https://www.github.com/tauri-apps/tauri/pull/3635)) on 2022-03-08

## \[1.0.0-rc.7]

- Added `tsp` config option under `tauri > bundle > windows`, which enables Time-Stamp Protocol (RFC 3161) for the timestamping
Expand Down
6 changes: 3 additions & 3 deletions tooling/cli/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions tooling/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ members = [ "node" ]

[package]
name = "tauri-cli"
version = "1.0.0-rc.7"
version = "1.0.0-rc.8"
authors = [ "Tauri Programme within The Commons Conservancy" ]
edition = "2021"
rust-version = "1.57"
Expand All @@ -29,7 +29,7 @@ path = "src/main.rs"
[dependencies]
clap = { version = "3.1", features = [ "derive" ] }
anyhow = "1.0"
tauri-bundler = { version = "1.0.0-rc.3", path = "../bundler" }
tauri-bundler = { version = "1.0.0-rc.4", path = "../bundler" }
colored = "2.0"
once_cell = "1.10"
serde = { version = "1.0", features = [ "derive" ] }
Expand All @@ -39,7 +39,7 @@ notify = "4.0"
shared_child = "1.0"
toml_edit = "0.13"
json-patch = "0.2"
tauri-utils = { version = "1.0.0-rc.3", path = "../../core/tauri-utils", features = [ "isolation", "schema", "config-json5" ] }
tauri-utils = { version = "1.0.0-rc.4", path = "../../core/tauri-utils", features = [ "isolation", "schema", "config-json5" ] }
toml = "0.5"
valico = "3.6"
handlebars = "4.2"
Expand Down
6 changes: 3 additions & 3 deletions tooling/cli/metadata.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"cli.js": {
"version": "1.0.0-rc.6",
"version": "1.0.0-rc.7",
"node": ">= 12.13.0"
},
"tauri": "1.0.0-rc.4",
"tauri-build": "1.0.0-rc.4"
"tauri": "1.0.0-rc.5",
"tauri-build": "1.0.0-rc.5"
}
7 changes: 7 additions & 0 deletions tooling/cli/node/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## \[1.0.0-rc.8]

- Remove `minimumSystemVersion: null` from the application template configuration.
- [c81534eb](https://www.github.com/tauri-apps/tauri/commit/c81534ebd873c358e0346c7949aeb171803149a5) feat(cli): use default macOS minimum system version when it is empty ([#3658](https://www.github.com/tauri-apps/tauri/pull/3658)) on 2022-03-13
- Improve readability of the `info` subcommand output.
- [49d2f13f](https://www.github.com/tauri-apps/tauri/commit/49d2f13fc07d763d5de9bf4b19d00c901776c11d) feat(cli): colorful cli ([#3635](https://www.github.com/tauri-apps/tauri/pull/3635)) on 2022-03-08

## \[1.0.0-rc.6]

- Added `tsp` config option under `tauri > bundle > windows`, which enables Time-Stamp Protocol (RFC 3161) for the timestamping
Expand Down
2 changes: 1 addition & 1 deletion tooling/cli/node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tauri-apps/cli",
"version": "1.0.0-rc.7",
"version": "1.0.0-rc.8",
"description": "Command line interface for building Tauri apps",
"funding": {
"type": "opencollective",
Expand Down

0 comments on commit b621a0b

Please sign in to comment.