Skip to content

Commit

Permalink
apply version updates
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasfernog authored Feb 6, 2024
1 parent 8751c32 commit b1f35a5
Show file tree
Hide file tree
Showing 25 changed files with 141 additions and 38 deletions.
7 changes: 7 additions & 0 deletions .changes/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,18 @@
"changes": [
".changes/beta.md",
".changes/fix-codegen-rerun-if-changed.md",
".changes/fix-invoke-devtools-by-hotkey.md",
".changes/fix-migrate-updater.md",
".changes/fix-process-ipc-message-fn.md",
".changes/fix-rewrite-schema.md",
".changes/fix-tauri-build-license-field.md",
".changes/fix-tauri-build-unix.md",
".changes/fix-webview-close.md",
".changes/refactor-capabilities-schema.md",
".changes/rerun-if-permission-created.md",
".changes/schema_str.md",
".changes/tauri-error-sync.md",
".changes/tauri-scope-object-error-sync.md",
".changes/update-plugin-template.md"
]
}
11 changes: 11 additions & 0 deletions core/tauri-build/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## \[2.0.0-beta.2]

### Bug Fixes

- [`19fb5f0b`](https://www.github.com/tauri-apps/tauri/commit/19fb5f0b20479885bf8bc4fdd8c431052420191d)([#8782](https://www.github.com/tauri-apps/tauri/pull/8782)) Fix generating invalid schema files.

### Dependencies

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

## \[2.0.0-beta.1]

### Enhancements
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 = "2.0.0-beta.1"
version = "2.0.0-beta.2"
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-beta.1", path = "../tauri-codegen", optional = true }
tauri-utils = { version = "2.0.0-beta.1", path = "../tauri-utils", features = [ "build", "resources" ] }
tauri-codegen = { version = "2.0.0-beta.2", path = "../tauri-codegen", optional = true }
tauri-utils = { version = "2.0.0-beta.2", path = "../tauri-utils", features = [ "build", "resources" ] }
cargo_toml = "0.17"
serde = "1"
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

## \[2.0.0-beta.2]

### Dependencies

- Upgraded to `[email protected]`

## \[2.0.0-beta.1]

### Dependencies
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 = "2.0.0-beta.1"
version = "2.0.0-beta.2"
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 @@ -19,7 +19,7 @@ proc-macro2 = "1"
quote = "1"
serde = { version = "1", features = [ "derive" ] }
serde_json = "1"
tauri-utils = { version = "2.0.0-beta.1", path = "../tauri-utils", features = [ "build" ] }
tauri-utils = { version = "2.0.0-beta.2", path = "../tauri-utils", features = [ "build" ] }
thiserror = "1"
walkdir = "2"
brotli = { version = "3", optional = true, default-features = false, features = [ "std" ] }
Expand Down
7 changes: 7 additions & 0 deletions core/tauri-macros/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## \[2.0.0-beta.2]

### Dependencies

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

## \[2.0.0-beta.1]

### Dependencies
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 = "2.0.0-beta.1"
version = "2.0.0-beta.2"
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.4"
tauri-codegen = { version = "2.0.0-beta.1", default-features = false, path = "../tauri-codegen" }
tauri-utils = { version = "2.0.0-beta.1", path = "../tauri-utils" }
tauri-codegen = { version = "2.0.0-beta.2", default-features = false, path = "../tauri-codegen" }
tauri-utils = { version = "2.0.0-beta.2", path = "../tauri-utils" }

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

## \[2.0.0-beta.2]

### Dependencies

- Upgraded to `[email protected]`

## \[2.0.0-beta.1]

### Bug Fixes
Expand Down
4 changes: 2 additions & 2 deletions core/tauri-plugin/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tauri-plugin"
version = "2.0.0-beta.1"
version = "2.0.0-beta.2"
description = "Build script and runtime Tauri plugin definitions"
authors = { workspace = true }
homepage = { workspace = true }
Expand Down Expand Up @@ -30,7 +30,7 @@ runtime = [ ]
[dependencies]
anyhow = { version = "1", optional = true }
serde = { version = "1", optional = true }
tauri-utils = { version = "2.0.0-beta.1", default-features = false, path = "../tauri-utils" }
tauri-utils = { version = "2.0.0-beta.2", default-features = false, path = "../tauri-utils" }
serde_json = { version = "1", optional = true }
glob = { version = "0.3", optional = true }
toml = { version = "0.8", optional = true }
Expand Down
7 changes: 7 additions & 0 deletions core/tauri-runtime-wry/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## \[2.0.0-beta.2]

### Dependencies

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

## \[2.0.0-beta.1]

### Dependencies
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 = "2.0.0-beta.1"
version = "2.0.0-beta.2"
description = "Wry bindings to the Tauri runtime"
exclude = [ "CHANGELOG.md", "/target" ]
readme = "README.md"
Expand All @@ -15,8 +15,8 @@ rust-version = { workspace = true }
[dependencies]
wry = { version = "0.35.2", default-features = false, features = [ "file-drop", "protocol", "os-webview" ] }
tao = { version = "0.25", default-features = false, features = [ "rwh_05", "rwh_06" ] }
tauri-runtime = { version = "2.0.0-beta.1", path = "../tauri-runtime" }
tauri-utils = { version = "2.0.0-beta.1", path = "../tauri-utils" }
tauri-runtime = { version = "2.0.0-beta.2", path = "../tauri-runtime" }
tauri-utils = { version = "2.0.0-beta.2", path = "../tauri-utils" }
raw-window-handle = "0.5"
http = "0.2"
tracing = { version = "0.1", optional = true }
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

## \[2.0.0-beta.2]

### Dependencies

- Upgraded to `[email protected]`

## \[2.0.0-beta.1]

### Dependencies
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 = "2.0.0-beta.1"
version = "2.0.0-beta.2"
description = "Runtime for Tauri applications"
exclude = [ "CHANGELOG.md", "/target" ]
readme = "README.md"
Expand Down Expand Up @@ -29,7 +29,7 @@ targets = [
serde = { version = "1.0", features = [ "derive" ] }
serde_json = "1.0"
thiserror = "1.0"
tauri-utils = { version = "2.0.0-beta.1", path = "../tauri-utils" }
tauri-utils = { version = "2.0.0-beta.2", path = "../tauri-utils" }
http = "0.2.4"
raw-window-handle = "0.5"
url = { version = "2" }
Expand Down
6 changes: 6 additions & 0 deletions core/tauri-utils/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## \[2.0.0-beta.2]

### Bug Fixes

- [`ae0fe47c`](https://www.github.com/tauri-apps/tauri/commit/ae0fe47c4c35fa87c77acf42af32ef3f0615cb08)([#8774](https://www.github.com/tauri-apps/tauri/pull/8774)) Fix compile error when `tauri.conf.json` had `bundle > license` set.

## \[2.0.0-beta.1]

### Enhancements
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 = "2.0.0-beta.1"
version = "2.0.0-beta.2"
description = "Utilities for Tauri"
exclude = [ "CHANGELOG.md", "/target" ]
readme = "README.md"
Expand Down
20 changes: 20 additions & 0 deletions core/tauri/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# Changelog

## \[2.0.0-beta.3]

### Bug Fixes

- [`8751c329`](https://www.github.com/tauri-apps/tauri/commit/8751c3299f2b7229c6108aa37dedf1dc5edb3e5c)([#8793](https://www.github.com/tauri-apps/tauri/pull/8793)) Fix invoking toggle devtools by hotkey.
- [`bd73ab0a`](https://www.github.com/tauri-apps/tauri/commit/bd73ab0a1adcf648e38d579b92515dababf34993)([#8766](https://www.github.com/tauri-apps/tauri/pull/8766)) When using the multiwebview mode, properly remove the webview from memory on `Webview::close`.
- [`2e6db908`](https://www.github.com/tauri-apps/tauri/commit/2e6db908d7b3a2c928c46b0ad9ccf9ec55a29480)([#8777](https://www.github.com/tauri-apps/tauri/pull/8777)) Fix regression in `tauri::Error` not being `Sync`.

### Dependencies

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

### Breaking Changes

- [`2e6db908`](https://www.github.com/tauri-apps/tauri/commit/2e6db908d7b3a2c928c46b0ad9ccf9ec55a29480)([#8777](https://www.github.com/tauri-apps/tauri/pull/8777)) Require `ScopeObject::Error` to be `Sync` as well.

## \[2.0.0-beta.2]

### Bug Fixes
Expand Down
14 changes: 7 additions & 7 deletions core/tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tauri"
version = "2.0.0-beta.2"
version = "2.0.0-beta.3"
description = "Make tiny, secure apps for all desktop platforms with Tauri"
exclude = [ "/test", "/.scripts", "CHANGELOG.md", "/target" ]
readme = "README.md"
Expand Down Expand Up @@ -50,10 +50,10 @@ uuid = { version = "1", features = [ "v4" ], optional = true }
url = { version = "2.4" }
anyhow = "1.0"
thiserror = "1.0"
tauri-runtime = { version = "2.0.0-beta.1", path = "../tauri-runtime" }
tauri-macros = { version = "2.0.0-beta.1", path = "../tauri-macros" }
tauri-utils = { version = "2.0.0-beta.1", features = [ "resources" ], path = "../tauri-utils" }
tauri-runtime-wry = { version = "2.0.0-beta.1", path = "../tauri-runtime-wry", optional = true }
tauri-runtime = { version = "2.0.0-beta.2", path = "../tauri-runtime" }
tauri-macros = { version = "2.0.0-beta.2", path = "../tauri-macros" }
tauri-utils = { version = "2.0.0-beta.2", features = [ "resources" ], path = "../tauri-utils" }
tauri-runtime-wry = { version = "2.0.0-beta.2", path = "../tauri-runtime-wry", optional = true }
getrandom = "0.2"
serde_repr = "0.1"
state = "0.6"
Expand Down Expand Up @@ -111,8 +111,8 @@ swift-rs = "1.0.6"

[build-dependencies]
heck = "0.4"
tauri-build = { path = "../tauri-build/", default-features = false, version = "2.0.0-beta.1" }
tauri-utils = { path = "../tauri-utils/", version = "2.0.0-beta.1", features = [ "build" ] }
tauri-build = { path = "../tauri-build/", default-features = false, version = "2.0.0-beta.2" }
tauri-utils = { path = "../tauri-utils/", version = "2.0.0-beta.2", features = [ "build" ] }

[dev-dependencies]
proptest = "1.4.0"
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

## \[2.0.0-beta.2]

### Dependencies

- Upgraded to `[email protected]`

## \[2.0.0-beta.1]

### Dependencies
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 = "2.0.0-beta.1"
version = "2.0.0-beta.2"
authors = [
"George Burton <[email protected]>",
"Tauri Programme within The Commons Conservancy"
Expand All @@ -17,7 +17,7 @@ rust-version = "1.70"
exclude = [ "CHANGELOG.md", "/target", "rustfmt.toml" ]

[dependencies]
tauri-utils = { version = "2.0.0-beta.1", path = "../../core/tauri-utils", features = [ "resources" ] }
tauri-utils = { version = "2.0.0-beta.2", path = "../../core/tauri-utils", features = [ "resources" ] }
image = "0.24.7"
libflate = "2.0"
anyhow = "1.0"
Expand Down
11 changes: 11 additions & 0 deletions tooling/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## \[2.0.0-beta.2]

### Bug Fixes

- [`baca704d`](https://www.github.com/tauri-apps/tauri/commit/baca704d4b5fae239fc320d10140f35bd705bfbb)([#8768](https://www.github.com/tauri-apps/tauri/pull/8768)) Do not migrate updater configuration if the active flag is set to false.

### Dependencies

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

## \[2.0.0-beta.1]

### Enhancements
Expand Down
10 changes: 5 additions & 5 deletions tooling/cli/Cargo.lock

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

Loading

0 comments on commit b1f35a5

Please sign in to comment.