Skip to content

Apply Version Updates From Current Changes #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .changes/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,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 @@ -93,6 +94,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
7 changes: 7 additions & 0 deletions core/tauri/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# 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

## \[1.0.0-rc.4]

- Run `AppHandle` cleanup code before restarting the application on the `process > relaunch` API.
Expand Down
2 changes: 1 addition & 1 deletion 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
5 changes: 5 additions & 0 deletions tooling/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## \[1.0.0-rc.8]

- 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
2 changes: 1 addition & 1 deletion tooling/cli/Cargo.lock

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

2 changes: 1 addition & 1 deletion 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 Down
4 changes: 2 additions & 2 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": "1.0.0-rc.5",
"tauri-build": "1.0.0-rc.4"
}
5 changes: 5 additions & 0 deletions tooling/cli/node/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## \[1.0.0-rc.8]

- 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