Skip to content

Commit bd231a8

Browse files
authored
apply version updates
1 parent 6219a50 commit bd231a8

File tree

9 files changed

+26
-6
lines changed

9 files changed

+26
-6
lines changed

.changes/pre.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@
6868
".changes/cli.rs-use-tauri-utils.md",
6969
".changes/cli.rs-validate-dist-dir.md",
7070
".changes/cli.rs-wix-license.md",
71+
".changes/colorful-cli.md",
7172
".changes/command-feature-flag.md",
7273
".changes/command-output-carriage-return.md",
7374
".changes/consistent-event-name-usage.md",
@@ -93,6 +94,8 @@
9394
".changes/fix-cli-signer-sign-cmd.md",
9495
".changes/fix-cli.js-windows-freezing.md",
9596
".changes/fix-close-requested-js-event.md",
97+
".changes/fix-csp-fallback-route.md",
98+
".changes/fix-csp-linux.md",
9699
".changes/fix-deadlock-create-window-from-menu.md",
97100
".changes/fix-deadlock-path-iter.md",
98101
".changes/fix-default-freeze-prototype.md",

core/tauri/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## \[1.0.0-rc.5]
4+
5+
- Properly apply the CSP when loading a route that fallbacks to index.html.
6+
- [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
7+
- Fix CSP usage on Linux when changing it via the `on_web_resource_request` handler.
8+
- [f5efc248](https://www.github.com/tauri-apps/tauri/commit/f5efc248da511e0924c9673b947d5de7ef69ac45) fix(core): runtime CSP changes on Linux on 2022-03-07
9+
310
## \[1.0.0-rc.4]
411

512
- Run `AppHandle` cleanup code before restarting the application on the `process > relaunch` API.

core/tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ license = "Apache-2.0 OR MIT"
1616
name = "tauri"
1717
readme = "README.md"
1818
repository = "https://github.com/tauri-apps/tauri"
19-
version = "1.0.0-rc.4"
19+
version = "1.0.0-rc.5"
2020

2121
[package.metadata.docs.rs]
2222
no-default-features = true

tooling/cli/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## \[1.0.0-rc.8]
4+
5+
- Improve readability of the `info` subcommand output.
6+
- [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
7+
38
## \[1.0.0-rc.7]
49

510
- Added `tsp` config option under `tauri > bundle > windows`, which enables Time-Stamp Protocol (RFC 3161) for the timestamping

tooling/cli/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tooling/cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ members = [ "node" ]
33

44
[package]
55
name = "tauri-cli"
6-
version = "1.0.0-rc.7"
6+
version = "1.0.0-rc.8"
77
authors = [ "Tauri Programme within The Commons Conservancy" ]
88
edition = "2021"
99
rust-version = "1.57"

tooling/cli/metadata.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"cli.js": {
3-
"version": "1.0.0-rc.6",
3+
"version": "1.0.0-rc.7",
44
"node": ">= 12.13.0"
55
},
6-
"tauri": "1.0.0-rc.4",
6+
"tauri": "1.0.0-rc.5",
77
"tauri-build": "1.0.0-rc.4"
88
}

tooling/cli/node/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## \[1.0.0-rc.8]
4+
5+
- Improve readability of the `info` subcommand output.
6+
- [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
7+
38
## \[1.0.0-rc.6]
49

510
- Added `tsp` config option under `tauri > bundle > windows`, which enables Time-Stamp Protocol (RFC 3161) for the timestamping

tooling/cli/node/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tauri-apps/cli",
3-
"version": "1.0.0-rc.7",
3+
"version": "1.0.0-rc.8",
44
"description": "Command line interface for building Tauri apps",
55
"funding": {
66
"type": "opencollective",

0 commit comments

Comments
 (0)