Skip to content

Commit b154826

Browse files
apply version updates (#13060)
Co-authored-by: lucasfernog <[email protected]>
1 parent dade232 commit b154826

36 files changed

+171
-103
lines changed

.changes/change-pr-13066.md

-4
This file was deleted.

.changes/fix-nsis-spanish-international.md

-5
This file was deleted.

.changes/fix-tauri-info-crate-latest-version.md

-5
This file was deleted.

.changes/fix-tauri-info-request-log-level.md

-5
This file was deleted.

.changes/include-permissions-in-schema.md

-6
This file was deleted.

.changes/merge-config-based-on-first.md

-6
This file was deleted.

.changes/suppress-deprecated-trayicon-codegen.md

-5
This file was deleted.

.changes/toml-json5-configs-in-cli.md

-6
This file was deleted.

Cargo.lock

+25-25
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/tauri-build/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## \[2.1.1]
4+
5+
### Dependencies
6+
7+
- Upgraded to `[email protected]`
8+
- Upgraded to `[email protected]`
9+
310
## \[2.1.0]
411

512
### New Features

crates/tauri-build/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tauri-build"
3-
version = "2.1.0"
3+
version = "2.1.1"
44
description = "build time code to pair with https://crates.io/crates/tauri"
55
exclude = ["CHANGELOG.md", "/target"]
66
readme = "README.md"
@@ -28,8 +28,8 @@ rustdoc-args = ["--cfg", "docsrs"]
2828
[dependencies]
2929
anyhow = "1"
3030
quote = { version = "1", optional = true }
31-
tauri-codegen = { version = "2.1.0", path = "../tauri-codegen", optional = true }
32-
tauri-utils = { version = "2.3.0", path = "../tauri-utils", features = [
31+
tauri-codegen = { version = "2.1.1", path = "../tauri-codegen", optional = true }
32+
tauri-utils = { version = "2.3.1", path = "../tauri-utils", features = [
3333
"build",
3434
"resources",
3535
] }

crates/tauri-bundler/CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Changelog
22

3+
## \[2.3.1]
4+
5+
### Bug Fixes
6+
7+
- [`2138bbc21`](https://www.github.com/tauri-apps/tauri/commit/2138bbc21294785df5f4144670104387289f79c1) ([#13087](https://www.github.com/tauri-apps/tauri/pull/13087) by [@Legend-Master](https://www.github.com/tauri-apps/tauri/../../Legend-Master)) Fix NSIS installer displaying in wrong language if `SpanishInternational` is included
8+
9+
### Dependencies
10+
11+
- Upgraded to `[email protected]`
12+
313
## \[2.3.0]
414

515
### Enhancements

crates/tauri-bundler/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tauri-bundler"
3-
version = "2.3.0"
3+
version = "2.3.1"
44
authors = [
55
"George Burton <[email protected]>",
66
"Tauri Programme within The Commons Conservancy",
@@ -15,7 +15,7 @@ rust-version = "1.77.2"
1515
exclude = ["CHANGELOG.md", "/target", "rustfmt.toml"]
1616

1717
[dependencies]
18-
tauri-utils = { version = "2.3.0", path = "../tauri-utils", features = [
18+
tauri-utils = { version = "2.3.1", path = "../tauri-utils", features = [
1919
"resources",
2020
] }
2121
image = "0.25"

crates/tauri-cli/CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
# Changelog
22

3+
## \[2.4.1]
4+
5+
### Enhancements
6+
7+
- [`f805061d1`](https://www.github.com/tauri-apps/tauri/commit/f805061d1152bc4790dbdb9475a506afcdd1de75) ([#13079](https://www.github.com/tauri-apps/tauri/pull/13079) by [@Pietagorh](https://www.github.com/tauri-apps/tauri/../../Pietagorh)) Add support for passing TOML and JSON5 config files to `--config` arg
8+
9+
### Bug Fixes
10+
11+
- [`30beb6fee`](https://www.github.com/tauri-apps/tauri/commit/30beb6fee7b052e588ee72c238e315a557b5d6f2) ([#13096](https://www.github.com/tauri-apps/tauri/pull/13096) by [@Legend-Master](https://www.github.com/tauri-apps/tauri/../../Legend-Master)) Fix `tauri info` can't find the latest version for rust crates
12+
- [`30beb6fee`](https://www.github.com/tauri-apps/tauri/commit/30beb6fee7b052e588ee72c238e315a557b5d6f2) ([#13096](https://www.github.com/tauri-apps/tauri/pull/13096) by [@Legend-Master](https://www.github.com/tauri-apps/tauri/../../Legend-Master)) Fix `tauri info` logging network operations in `info` level instead of `debug`
13+
- [`794af778e`](https://www.github.com/tauri-apps/tauri/commit/794af778e4915ffb6a4fe9bae8fba04bc880503d) ([#13117](https://www.github.com/tauri-apps/tauri/pull/13117) by [@Legend-Master](https://www.github.com/tauri-apps/tauri/../../Legend-Master)) Fix setting merge config value to null with `--config` arg no longer works
14+
15+
### Dependencies
16+
17+
- Upgraded to `[email protected]`
18+
- Upgraded to `[email protected]`
19+
320
## \[2.4.0]
421

522
### New Features

crates/tauri-cli/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tauri-cli"
3-
version = "2.4.0"
3+
version = "2.4.1"
44
authors = ["Tauri Programme within The Commons Conservancy"]
55
edition = "2021"
66
rust-version = "1.77.2"
@@ -47,7 +47,7 @@ sublime_fuzzy = "0.7"
4747
clap_complete = "4"
4848
clap = { version = "4", features = ["derive", "env"] }
4949
anyhow = "1"
50-
tauri-bundler = { version = "2.3.0", default-features = false, path = "../tauri-bundler" }
50+
tauri-bundler = { version = "2.3.1", default-features = false, path = "../tauri-bundler" }
5151
colored = "2"
5252
serde = { version = "1", features = ["derive"] }
5353
serde_json = { version = "1", features = ["preserve_order"] }
@@ -58,7 +58,7 @@ shared_child = "1"
5858
duct = "0.13"
5959
toml_edit = { version = "0.22", features = ["serde"] }
6060
json-patch = "3"
61-
tauri-utils = { version = "2.3.0", path = "../tauri-utils", features = [
61+
tauri-utils = { version = "2.3.1", path = "../tauri-utils", features = [
6262
"isolation",
6363
"schema",
6464
"config-json5",

crates/tauri-cli/config.schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "http://json-schema.org/draft-07/schema#",
3-
"$id": "https://schema.tauri.app/config/2.4.0",
3+
"$id": "https://schema.tauri.app/config/2.4.1",
44
"title": "Config",
55
"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://v2.tauri.app/reference/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\": \"http://localhost:3000\",\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 ```",
66
"type": "object",

0 commit comments

Comments
 (0)