Skip to content

Commit

Permalink
apply version updates (#10949)
Browse files Browse the repository at this point in the history
Co-authored-by: lucasfernog <[email protected]>
  • Loading branch information
github-actions[bot] and lucasfernog committed Sep 10, 2024
1 parent a5848af commit d8ccf9d
Show file tree
Hide file tree
Showing 25 changed files with 143 additions and 54 deletions.
3 changes: 3 additions & 0 deletions .changes/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,9 @@
".changes/fix-conf-parsing-error-filepath.md",
".changes/fix-config-override.md",
".changes/fix-context-stack-size.md",
".changes/fix-dev-server-proxy-url.md",
".changes/fix-export-default-permissions.md",
".changes/fix-identifier-config-required.md",
".changes/fix-ios-automatic-signing-ci.md",
".changes/fix-ios-build-older-swift.md",
".changes/fix-ios-build-simulator.md",
Expand Down Expand Up @@ -103,6 +105,7 @@
".changes/safe-file-path-serialize.md",
".changes/safe-path-buf-from-str.md",
".changes/serialize-array-buffer.md",
".changes/sync-ios-version.md",
".changes/synchronize-config-and-xcode-project.md",
".changes/synchronize-pbxproj-export-options.md",
".changes/tauri-build.md",
Expand Down
42 changes: 21 additions & 21 deletions Cargo.lock

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

7 changes: 7 additions & 0 deletions crates/tauri-build/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## \[2.0.0-rc.10]

### Dependencies

- Upgraded to `[email protected]`
- Upgraded to `[email protected]`

## \[2.0.0-rc.9]

### Dependencies
Expand Down
6 changes: 3 additions & 3 deletions crates/tauri-build/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tauri-build"
version = "2.0.0-rc.9"
version = "2.0.0-rc.10"
description = "build time code to pair with https://crates.io/crates/tauri"
exclude = ["CHANGELOG.md", "/target"]
readme = "README.md"
Expand Down Expand Up @@ -28,8 +28,8 @@ rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
anyhow = "1"
quote = { version = "1", optional = true }
tauri-codegen = { version = "2.0.0-rc.9", path = "../tauri-codegen", optional = true }
tauri-utils = { version = "2.0.0-rc.9", path = "../tauri-utils", features = [
tauri-codegen = { version = "2.0.0-rc.10", path = "../tauri-codegen", optional = true }
tauri-utils = { version = "2.0.0-rc.10", path = "../tauri-utils", features = [
"build",
"resources",
] }
Expand Down
6 changes: 6 additions & 0 deletions crates/tauri-bundler/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## \[2.0.1-rc.10]

### Dependencies

- Upgraded to `[email protected]`

## \[2.0.1-rc.9]

### Dependencies
Expand Down
4 changes: 2 additions & 2 deletions crates/tauri-bundler/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tauri-bundler"
version = "2.0.1-rc.9"
version = "2.0.1-rc.10"
authors = [
"George Burton <[email protected]>",
"Tauri Programme within The Commons Conservancy",
Expand All @@ -15,7 +15,7 @@ rust-version = "1.71"
exclude = ["CHANGELOG.md", "/target", "rustfmt.toml"]

[dependencies]
tauri-utils = { version = "2.0.0-rc.9", path = "../tauri-utils", features = [
tauri-utils = { version = "2.0.0-rc.10", path = "../tauri-utils", features = [
"resources",
] }
image = "0.25.0"
Expand Down
11 changes: 11 additions & 0 deletions crates/tauri-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## \[2.0.0-rc.12]

### Bug Fixes

- [`a5848af65`](https://www.github.com/tauri-apps/tauri/commit/a5848af65b10d89686314cf737b7fd9d91f99dd8) ([#10944](https://www.github.com/tauri-apps/tauri/pull/10944) by [@lucasfernog](https://www.github.com/tauri-apps/tauri/../../lucasfernog)) Synchronize app version (`tauri.conf.json > version` or `Cargo.toml > package > version`) with the `CFBundleVersion` and `CFBundleShortVersionString` Info.plist values.

### Dependencies

- Upgraded to `[email protected]`
- Upgraded to `[email protected]`

## \[2.0.0-rc.11]

### Dependencies
Expand Down
6 changes: 3 additions & 3 deletions crates/tauri-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tauri-cli"
version = "2.0.0-rc.11"
version = "2.0.0-rc.12"
authors = ["Tauri Programme within The Commons Conservancy"]
edition = "2021"
rust-version = "1.71"
Expand Down Expand Up @@ -47,7 +47,7 @@ sublime_fuzzy = "0.7"
clap_complete = "4"
clap = { version = "4.5", features = ["derive", "env"] }
anyhow = "1.0"
tauri-bundler = { version = "2.0.1-rc.9", default-features = false, path = "../tauri-bundler" }
tauri-bundler = { version = "2.0.1-rc.10", default-features = false, path = "../tauri-bundler" }
colored = "2.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0", features = ["preserve_order"] }
Expand All @@ -57,7 +57,7 @@ shared_child = "1.0"
duct = "0.13"
toml_edit = { version = "0.22", features = ["serde"] }
json-patch = "2.0"
tauri-utils = { version = "2.0.0-rc.9", path = "../tauri-utils", features = [
tauri-utils = { version = "2.0.0-rc.10", path = "../tauri-utils", features = [
"isolation",
"schema",
"config-json5",
Expand Down
8 changes: 4 additions & 4 deletions crates/tauri-cli/metadata-v2.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"cli.js": {
"version": "2.0.0-rc.12",
"version": "2.0.0-rc.13",
"node": ">= 10.0.0"
},
"tauri": "2.0.0-rc.10",
"tauri-build": "2.0.0-rc.9",
"tauri-plugin": "2.0.0-rc.9"
"tauri": "2.0.0-rc.11",
"tauri-build": "2.0.0-rc.10",
"tauri-plugin": "2.0.0-rc.10"
}
6 changes: 6 additions & 0 deletions crates/tauri-codegen/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## \[2.0.0-rc.10]

### Dependencies

- Upgraded to `[email protected]`

## \[2.0.0-rc.9]

### Dependencies
Expand Down
4 changes: 2 additions & 2 deletions crates/tauri-codegen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tauri-codegen"
version = "2.0.0-rc.9"
version = "2.0.0-rc.10"
description = "code generation meant to be consumed inside of `tauri` through `tauri-build` or `tauri-macros`"
exclude = ["CHANGELOG.md", "/target"]
readme = "README.md"
Expand All @@ -20,7 +20,7 @@ quote = "1"
syn = "2"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tauri-utils = { version = "2.0.0-rc.9", path = "../tauri-utils", features = [
tauri-utils = { version = "2.0.0-rc.10", path = "../tauri-utils", features = [
"build",
] }
thiserror = "1"
Expand Down
7 changes: 7 additions & 0 deletions crates/tauri-macros/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## \[2.0.0-rc.9]

### Dependencies

- Upgraded to `[email protected]`
- Upgraded to `[email protected]`

## \[2.0.0-rc.8]

### Dependencies
Expand Down
6 changes: 3 additions & 3 deletions crates/tauri-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tauri-macros"
version = "2.0.0-rc.8"
version = "2.0.0-rc.9"
description = "Macros for the tauri crate."
exclude = ["CHANGELOG.md", "/target"]
readme = "README.md"
Expand All @@ -20,8 +20,8 @@ proc-macro2 = { version = "1", features = ["span-locations"] }
quote = "1"
syn = { version = "2", features = ["full"] }
heck = "0.5"
tauri-codegen = { version = "2.0.0-rc.9", default-features = false, path = "../tauri-codegen" }
tauri-utils = { version = "2.0.0-rc.9", path = "../tauri-utils" }
tauri-codegen = { version = "2.0.0-rc.10", default-features = false, path = "../tauri-codegen" }
tauri-utils = { version = "2.0.0-rc.10", path = "../tauri-utils" }

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

## \[2.0.0-rc.10]

### Dependencies

- Upgraded to `[email protected]`

## \[2.0.0-rc.9]

### Dependencies
Expand Down
Loading

0 comments on commit d8ccf9d

Please sign in to comment.