Skip to content
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

Apply Version Updates From Current Changes #4701

Merged
merged 1 commit into from
Jul 22, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changes/fix-debian-arm64.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/fix-windows-updater.md

This file was deleted.

5 changes: 5 additions & 0 deletions core/tauri/CHANGELOG.md
@@ -1,5 +1,10 @@
# Changelog

## \[1.0.5]

- Escape the MSI file path when running msiexec via powershell.
- [9af43134](https://www.github.com/tauri-apps/tauri/commit/9af43134e1e58369907281024d31bdb4d16ee6f6) fix(updater): escape MSI path ([#4737](https://www.github.com/tauri-apps/tauri/pull/4737)) on 2022-07-22

## \[1.0.4]

- Reduce the amount of allocations when converting cases.
Expand Down
2 changes: 1 addition & 1 deletion core/tauri/Cargo.toml
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.4"
version = "1.0.5"

[package.metadata.docs.rs]
no-default-features = true
Expand Down
5 changes: 5 additions & 0 deletions tooling/bundler/CHANGELOG.md
@@ -1,5 +1,10 @@
# Changelog

## \[1.0.5]

- Correctly fill the architecture when building Debian packages targeting ARM64 (aarch64).
- [635f23b8](https://www.github.com/tauri-apps/tauri/commit/635f23b88adbb8726d628f67840709cd870836dc) fix(bundler): correctly set debian architecture for aarch64 ([#4700](https://www.github.com/tauri-apps/tauri/pull/4700)) on 2022-07-17

## \[1.0.4]

- Reduce the amount of allocations when converting cases.
Expand Down
2 changes: 1 addition & 1 deletion tooling/bundler/Cargo.toml
Expand Up @@ -2,7 +2,7 @@ workspace = { }

[package]
name = "tauri-bundler"
version = "1.0.4"
version = "1.0.5"
authors = [
"George Burton <burtonageo@gmail.com>",
"Tauri Programme within The Commons Conservancy"
Expand Down
6 changes: 6 additions & 0 deletions tooling/cli/CHANGELOG.md
@@ -1,5 +1,11 @@
# Changelog

## \[1.0.5]

- Correctly fill the architecture when building Debian packages targeting ARM64 (aarch64).
- Bumped due to a bump in tauri-bundler.
- [635f23b8](https://www.github.com/tauri-apps/tauri/commit/635f23b88adbb8726d628f67840709cd870836dc) fix(bundler): correctly set debian architecture for aarch64 ([#4700](https://www.github.com/tauri-apps/tauri/pull/4700)) on 2022-07-17

## \[1.0.4]

- Do not capture and force colors of `cargo build` output.
Expand Down
4 changes: 2 additions & 2 deletions tooling/cli/Cargo.lock

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

4 changes: 2 additions & 2 deletions tooling/cli/Cargo.toml
Expand Up @@ -3,7 +3,7 @@ members = [ "node" ]

[package]
name = "tauri-cli"
version = "1.0.4"
version = "1.0.5"
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.2", features = [ "derive" ] }
anyhow = "1.0"
tauri-bundler = { version = "1.0.4", path = "../bundler" }
tauri-bundler = { version = "1.0.5", path = "../bundler" }
colored = "2.0"
once_cell = "1.13"
serde = { version = "1.0", features = [ "derive" ] }
Expand Down
4 changes: 2 additions & 2 deletions tooling/cli/metadata.json
@@ -1,8 +1,8 @@
{
"cli.js": {
"version": "1.0.4",
"version": "1.0.5",
"node": ">= 10.0.0"
},
"tauri": "1.0.4",
"tauri": "1.0.5",
"tauri-build": "1.0.4"
}
6 changes: 6 additions & 0 deletions tooling/cli/node/CHANGELOG.md
@@ -1,5 +1,11 @@
# Changelog

## \[1.0.5]

- Correctly fill the architecture when building Debian packages targeting ARM64 (aarch64).
- Bumped due to a bump in cli.rs.
- [635f23b8](https://www.github.com/tauri-apps/tauri/commit/635f23b88adbb8726d628f67840709cd870836dc) fix(bundler): correctly set debian architecture for aarch64 ([#4700](https://www.github.com/tauri-apps/tauri/pull/4700)) on 2022-07-17

## \[1.0.4]

- Do not capture and force colors of `cargo build` output.
Expand Down
2 changes: 1 addition & 1 deletion tooling/cli/node/package.json
@@ -1,6 +1,6 @@
{
"name": "@tauri-apps/cli",
"version": "1.0.4",
"version": "1.0.5",
"description": "Command line interface for building Tauri apps",
"funding": {
"type": "opencollective",
Expand Down