Skip to content

Commit

Permalink
Apply Version Updates From Current Changes (#11029)
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 17, 2024
1 parent 96c1ec3 commit cbdcee6
Show file tree
Hide file tree
Showing 29 changed files with 163 additions and 58 deletions.
5 changes: 5 additions & 0 deletions .changes/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
".changes/android-gradle-8-9.md",
".changes/android-port-forward-fixes.md",
".changes/api-permissions-plugin.md",
".changes/api-to-physical.md",
".changes/append_invoke_initialization_script.md",
".changes/asset-resolver-dev-fallback.md",
".changes/assets-iter-cow.md",
Expand All @@ -34,10 +35,12 @@
".changes/cli-info-plugins.md",
".changes/cli-make-app-dir-consistent.md",
".changes/cli-mobile-checks.md",
".changes/cli-plugin-no-example.md",
".changes/cli-signtool-path.md",
".changes/cli-template-log-plugin.md",
".changes/core-default-schema.md",
".changes/core-plugin-namespace.md",
".changes/custom-invoke-system-invoke-key.md",
".changes/dev-url-localhost-mobile.md",
".changes/do-not-exit-on-log-fail.md",
".changes/embed-plist-no-unit-val.md",
Expand Down Expand Up @@ -109,6 +112,7 @@
".changes/refactor-ipc-error.md",
".changes/refactor-ipc-response.md",
".changes/remove-cargo-config-creation.md",
".changes/remove-invoke-system-responder.md",
".changes/remove-open-command.md",
".changes/remove-unsecure-configs.md",
".changes/remove-webview_fixed_runtime_path.md",
Expand Down Expand Up @@ -141,6 +145,7 @@
".changes/utils-fix-plugin-reference.md",
".changes/v1-migrate-updater.md",
".changes/v1-migration-improvement.md",
".changes/window-config-create.md",
".changes/wix-consistent-product-code.md",
".changes/wix-upgrade-code-regression.md"
]
Expand Down
44 changes: 22 additions & 22 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.12]

### Dependencies

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

## \[2.0.0-rc.11]

### Bug Fixes
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.11"
version = "2.0.0-rc.12"
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.11", path = "../tauri-codegen", optional = true }
tauri-utils = { version = "2.0.0-rc.11", path = "../tauri-utils", features = [
tauri-codegen = { version = "2.0.0-rc.12", path = "../tauri-codegen", optional = true }
tauri-utils = { version = "2.0.0-rc.12", 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.13]

### Dependencies

- Upgraded to `[email protected]`

## \[2.0.1-rc.12]

### Bug Fixes
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.12"
version = "2.0.1-rc.13"
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.11", path = "../tauri-utils", features = [
tauri-utils = { version = "2.0.0-rc.12", 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.16]

### New Features

- [`9bb8fc618`](https://www.github.com/tauri-apps/tauri/commit/9bb8fc6189a93bcb811588b36e710d0f7818a1f9) ([#11030](https://www.github.com/tauri-apps/tauri/pull/11030) by [@amrbashir](https://www.github.com/tauri-apps/tauri/../../amrbashir)) Add `--no-example` flag for `tauri plugin new` and `tauri plugin init` to disable creation of an example project.

### Dependencies

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

## \[2.0.0-rc.15]

### Enhancements
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.15"
version = "2.0.0-rc.16"
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.12", default-features = false, path = "../tauri-bundler" }
tauri-bundler = { version = "2.0.1-rc.13", 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.11", path = "../tauri-utils", features = [
tauri-utils = { version = "2.0.0-rc.12", path = "../tauri-utils", features = [
"isolation",
"schema",
"config-json5",
Expand Down
2 changes: 1 addition & 1 deletion crates/tauri-cli/config.schema.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://schema.tauri.app/config/2.0.0-rc.14",
"$id": "https://schema.tauri.app/config/2.0.0-rc.15",
"title": "Config",
"description": "The Tauri configuration object.\n It is read from a file where you can define your frontend assets,\n configure the bundler and define a tray icon.\n\n The configuration file is generated by the\n [`tauri init`](https://tauri.app/v1/api/cli#init) command that lives in\n your Tauri application source directory (src-tauri).\n\n Once generated, you may modify it at will to customize your Tauri application.\n\n ## File Formats\n\n By default, the configuration is defined as a JSON file named `tauri.conf.json`.\n\n Tauri also supports JSON5 and TOML files via the `config-json5` and `config-toml` Cargo features, respectively.\n The JSON5 file name must be either `tauri.conf.json` or `tauri.conf.json5`.\n The TOML file name is `Tauri.toml`.\n\n ## Platform-Specific Configuration\n\n In addition to the default configuration file, Tauri can\n read a platform-specific configuration from `tauri.linux.conf.json`,\n `tauri.windows.conf.json`, `tauri.macos.conf.json`, `tauri.android.conf.json` and `tauri.ios.conf.json`\n (or `Tauri.linux.toml`, `Tauri.windows.toml`, `Tauri.macos.toml`, `Tauri.android.toml` and `Tauri.ios.toml` if the `Tauri.toml` format is used),\n which gets merged with the main configuration object.\n\n ## Configuration Structure\n\n The configuration is composed of the following objects:\n\n - [`app`](#appconfig): The Tauri configuration\n - [`build`](#buildconfig): The build configuration\n - [`bundle`](#bundleconfig): The bundle configurations\n - [`plugins`](#pluginconfig): The plugins configuration\n\n Example tauri.config.json file:\n\n ```json\n {\n \"productName\": \"tauri-app\",\n \"version\": \"0.1.0\",\n \"build\": {\n \"beforeBuildCommand\": \"\",\n \"beforeDevCommand\": \"\",\n \"devUrl\": \"../dist\",\n \"frontendDist\": \"../dist\"\n },\n \"app\": {\n \"security\": {\n \"csp\": null\n },\n \"windows\": [\n {\n \"fullscreen\": false,\n \"height\": 600,\n \"resizable\": true,\n \"title\": \"Tauri App\",\n \"width\": 800\n }\n ]\n },\n \"bundle\": {},\n \"plugins\": {}\n }\n ```",
"type": "object",
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.15",
"version": "2.0.0-rc.16",
"node": ">= 10.0.0"
},
"tauri": "2.0.0-rc.14",
"tauri-build": "2.0.0-rc.11",
"tauri-plugin": "2.0.0-rc.11"
"tauri": "2.0.0-rc.15",
"tauri-build": "2.0.0-rc.12",
"tauri-plugin": "2.0.0-rc.12"
}
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.12]

### Dependencies

- Upgraded to `[email protected]`

## \[2.0.0-rc.11]

### 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.11"
version = "2.0.0-rc.12"
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.11", path = "../tauri-utils", features = [
tauri-utils = { version = "2.0.0-rc.12", 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.11]

### Dependencies

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

## \[2.0.0-rc.10]

### Dependencies
Expand Down
Loading

0 comments on commit cbdcee6

Please sign in to comment.