Skip to content

Commit

Permalink
apply version updates (#5216)
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Sep 16, 2022
1 parent db26aaf commit e4292ce
Show file tree
Hide file tree
Showing 24 changed files with 88 additions and 43 deletions.
5 changes: 0 additions & 5 deletions .changes/cursor-config.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changes/metadata.md

This file was deleted.

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

## \[1.1.1]

- Add missing allowlist config for `set_cursor_grab`, `set_cursor_visible`, `set_cursor_icon` and `set_cursor_position` APIs.
- Bumped due to a bump in tauri-utils.
- [c764408d](https://www.github.com/tauri-apps/tauri/commit/c764408da7fae123edd41115bda42fa75a4731d2) fix: Add missing allowlist config for cursor apis, closes [#5207](https://www.github.com/tauri-apps/tauri/pull/5207) ([#5211](https://www.github.com/tauri-apps/tauri/pull/5211)) on 2022-09-16

## \[1.1.0]

- Rerun codegen if assets or icons change.
Expand Down
6 changes: 3 additions & 3 deletions core/tauri-build/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tauri-build"
version = "1.1.0"
version = "1.1.1"
authors = [ "Tauri Programme within The Commons Conservancy" ]
categories = [ "gui", "web-programming" ]
license = "Apache-2.0 OR MIT"
Expand All @@ -19,8 +19,8 @@ rustdoc-args = [ "--cfg", "doc_cfg" ]
[dependencies]
anyhow = "1"
quote = { version = "1", optional = true }
tauri-codegen = { version = "1.1.0", path = "../tauri-codegen", optional = true }
tauri-utils = { version = "1.1.0", path = "../tauri-utils", features = [ "build", "resources" ] }
tauri-codegen = { version = "1.1.1", path = "../tauri-codegen", optional = true }
tauri-utils = { version = "1.1.1", path = "../tauri-utils", features = [ "build", "resources" ] }
cargo_toml = "0.11"
serde_json = "1"
heck = "0.4"
Expand Down
6 changes: 6 additions & 0 deletions core/tauri-codegen/CHANGELOG.md
@@ -1,5 +1,11 @@
# Changelog

## \[1.1.1]

- Add missing allowlist config for `set_cursor_grab`, `set_cursor_visible`, `set_cursor_icon` and `set_cursor_position` APIs.
- Bumped due to a bump in tauri-utils.
- [c764408d](https://www.github.com/tauri-apps/tauri/commit/c764408da7fae123edd41115bda42fa75a4731d2) fix: Add missing allowlist config for cursor apis, closes [#5207](https://www.github.com/tauri-apps/tauri/pull/5207) ([#5211](https://www.github.com/tauri-apps/tauri/pull/5211)) on 2022-09-16

## \[1.1.0]

- Use `TARGET` environment variable for code generation inside build scripts.
Expand Down
4 changes: 2 additions & 2 deletions core/tauri-codegen/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tauri-codegen"
version = "1.1.0"
version = "1.1.1"
authors = [ "Tauri Programme within The Commons Conservancy" ]
categories = [ "gui", "web-programming" ]
license = "Apache-2.0 OR MIT"
Expand All @@ -19,7 +19,7 @@ proc-macro2 = "1"
quote = "1"
serde = { version = "1", features = [ "derive" ] }
serde_json = "1"
tauri-utils = { version = "1.1.0", path = "../tauri-utils", features = [ "build" ] }
tauri-utils = { version = "1.1.1", path = "../tauri-utils", features = [ "build" ] }
thiserror = "1"
walkdir = "2"
brotli = { version = "3", optional = true, default-features = false, features = [ "std" ] }
Expand Down
6 changes: 6 additions & 0 deletions core/tauri-macros/CHANGELOG.md
@@ -1,5 +1,11 @@
# Changelog

## \[1.1.1]

- Add missing allowlist config for `set_cursor_grab`, `set_cursor_visible`, `set_cursor_icon` and `set_cursor_position` APIs.
- Bumped due to a bump in tauri-utils.
- [c764408d](https://www.github.com/tauri-apps/tauri/commit/c764408da7fae123edd41115bda42fa75a4731d2) fix: Add missing allowlist config for cursor apis, closes [#5207](https://www.github.com/tauri-apps/tauri/pull/5207) ([#5211](https://www.github.com/tauri-apps/tauri/pull/5211)) on 2022-09-16

## \[1.1.0]

- Added support to configuration files in TOML format (Tauri.toml file).
Expand Down
6 changes: 3 additions & 3 deletions core/tauri-macros/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tauri-macros"
version = "1.1.0"
version = "1.1.1"
authors = [ "Tauri Programme within The Commons Conservancy" ]
categories = [ "gui", "os", "filesystem", "web-programming" ]
license = "Apache-2.0 OR MIT"
Expand All @@ -20,8 +20,8 @@ proc-macro2 = "1"
quote = "1"
syn = { version = "1", features = [ "full" ] }
heck = "0.4"
tauri-codegen = { version = "1.1.0", default-features = false, path = "../tauri-codegen" }
tauri-utils = { version = "1.1.0", path = "../tauri-utils" }
tauri-codegen = { version = "1.1.1", default-features = false, path = "../tauri-codegen" }
tauri-utils = { version = "1.1.1", path = "../tauri-utils" }

[features]
custom-protocol = [ ]
Expand Down
6 changes: 6 additions & 0 deletions core/tauri-runtime-wry/CHANGELOG.md
@@ -1,5 +1,11 @@
# Changelog

## \[0.11.1]

- Add missing allowlist config for `set_cursor_grab`, `set_cursor_visible`, `set_cursor_icon` and `set_cursor_position` APIs.
- Bumped due to a bump in tauri-utils.
- [c764408d](https://www.github.com/tauri-apps/tauri/commit/c764408da7fae123edd41115bda42fa75a4731d2) fix: Add missing allowlist config for cursor apis, closes [#5207](https://www.github.com/tauri-apps/tauri/pull/5207) ([#5211](https://www.github.com/tauri-apps/tauri/pull/5211)) on 2022-09-16

## \[0.11.0]

- Ignore window events with unknown IDs.
Expand Down
6 changes: 3 additions & 3 deletions core/tauri-runtime-wry/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tauri-runtime-wry"
version = "0.11.0"
version = "0.11.1"
authors = [ "Tauri Programme within The Commons Conservancy" ]
categories = [ "gui", "web-programming" ]
license = "Apache-2.0 OR MIT"
Expand All @@ -14,8 +14,8 @@ readme = "README.md"

[dependencies]
wry = { version = "0.21", default-features = false, features = [ "file-drop", "protocol" ] }
tauri-runtime = { version = "0.11.0", path = "../tauri-runtime" }
tauri-utils = { version = "1.1.0", path = "../tauri-utils" }
tauri-runtime = { version = "0.11.1", path = "../tauri-runtime" }
tauri-utils = { version = "1.1.1", path = "../tauri-utils" }
uuid = { version = "1", features = [ "v4" ] }
rand = "0.8"
raw-window-handle = "0.5"
Expand Down
6 changes: 6 additions & 0 deletions core/tauri-runtime/CHANGELOG.md
@@ -1,5 +1,11 @@
# Changelog

## \[0.11.1]

- Add missing allowlist config for `set_cursor_grab`, `set_cursor_visible`, `set_cursor_icon` and `set_cursor_position` APIs.
- Bumped due to a bump in tauri-utils.
- [c764408d](https://www.github.com/tauri-apps/tauri/commit/c764408da7fae123edd41115bda42fa75a4731d2) fix: Add missing allowlist config for cursor apis, closes [#5207](https://www.github.com/tauri-apps/tauri/pull/5207) ([#5211](https://www.github.com/tauri-apps/tauri/pull/5211)) on 2022-09-16

## \[0.11.0]

- Added APIs to create a system tray at runtime.
Expand Down
4 changes: 2 additions & 2 deletions core/tauri-runtime/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tauri-runtime"
version = "0.11.0"
version = "0.11.1"
authors = [ "Tauri Programme within The Commons Conservancy" ]
categories = [ "gui", "web-programming" ]
license = "Apache-2.0 OR MIT"
Expand All @@ -26,7 +26,7 @@ targets = [
serde = { version = "1.0", features = [ "derive" ] }
serde_json = "1.0"
thiserror = "1.0"
tauri-utils = { version = "1.1.0", path = "../tauri-utils" }
tauri-utils = { version = "1.1.1", path = "../tauri-utils" }
uuid = { version = "1", features = [ "v4" ] }
http = "0.2.4"
http-range = "0.1.4"
Expand Down
5 changes: 5 additions & 0 deletions core/tauri-utils/CHANGELOG.md
@@ -1,5 +1,10 @@
# Changelog

## \[1.1.1]

- Add missing allowlist config for `set_cursor_grab`, `set_cursor_visible`, `set_cursor_icon` and `set_cursor_position` APIs.
- [c764408d](https://www.github.com/tauri-apps/tauri/commit/c764408da7fae123edd41115bda42fa75a4731d2) fix: Add missing allowlist config for cursor apis, closes [#5207](https://www.github.com/tauri-apps/tauri/pull/5207) ([#5211](https://www.github.com/tauri-apps/tauri/pull/5211)) on 2022-09-16

## \[1.1.0]

- Allow adding `build > beforeBundleCommand` in tauri.conf.json to run a shell command before the bundling phase.
Expand Down
2 changes: 1 addition & 1 deletion core/tauri-utils/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tauri-utils"
version = "1.1.0"
version = "1.1.1"
authors = [ "Tauri Programme within The Commons Conservancy" ]
license = "Apache-2.0 OR MIT"
homepage = "https://tauri.app"
Expand Down
6 changes: 6 additions & 0 deletions core/tauri/CHANGELOG.md
@@ -1,5 +1,11 @@
# Changelog

## \[1.1.1]

- Add missing allowlist config for `set_cursor_grab`, `set_cursor_visible`, `set_cursor_icon` and `set_cursor_position` APIs.
- Bumped due to a bump in tauri-utils.
- [c764408d](https://www.github.com/tauri-apps/tauri/commit/c764408da7fae123edd41115bda42fa75a4731d2) fix: Add missing allowlist config for cursor apis, closes [#5207](https://www.github.com/tauri-apps/tauri/pull/5207) ([#5211](https://www.github.com/tauri-apps/tauri/pull/5211)) on 2022-09-16

## \[1.1.0]

- Implement `api::http::ClientBuilder::max_redirections` for the default attohttpc client.
Expand Down
10 changes: 5 additions & 5 deletions core/tauri/Cargo.toml
Expand Up @@ -10,7 +10,7 @@ license = "Apache-2.0 OR MIT"
name = "tauri"
readme = "README.md"
repository = "https://github.com/tauri-apps/tauri"
version = "1.1.0"
version = "1.1.1"

[package.metadata.docs.rs]
no-default-features = true
Expand Down Expand Up @@ -49,10 +49,10 @@ url = { version = "2.3" }
anyhow = "1.0"
thiserror = "1.0"
once_cell = "1"
tauri-runtime = { version = "0.11.0", path = "../tauri-runtime" }
tauri-macros = { version = "1.1.0", path = "../tauri-macros" }
tauri-utils = { version = "1.1.0", features = [ "resources" ], path = "../tauri-utils" }
tauri-runtime-wry = { version = "0.11.0", path = "../tauri-runtime-wry", optional = true }
tauri-runtime = { version = "0.11.1", path = "../tauri-runtime" }
tauri-macros = { version = "1.1.1", path = "../tauri-macros" }
tauri-utils = { version = "1.1.1", features = [ "resources" ], path = "../tauri-utils" }
tauri-runtime-wry = { version = "0.11.1", path = "../tauri-runtime-wry", optional = true }
rand = "0.8"
semver = { version = "1.0", features = [ "serde" ] }
serde_repr = "0.1"
Expand Down
6 changes: 6 additions & 0 deletions tooling/bundler/CHANGELOG.md
@@ -1,5 +1,11 @@
# Changelog

## \[1.0.7]

- Add missing allowlist config for `set_cursor_grab`, `set_cursor_visible`, `set_cursor_icon` and `set_cursor_position` APIs.
- Bumped due to a bump in tauri-utils.
- [c764408d](https://www.github.com/tauri-apps/tauri/commit/c764408da7fae123edd41115bda42fa75a4731d2) fix: Add missing allowlist config for cursor apis, closes [#5207](https://www.github.com/tauri-apps/tauri/pull/5207) ([#5211](https://www.github.com/tauri-apps/tauri/pull/5211)) on 2022-09-16

## \[1.0.6]

- Avoid re-downloading AppImage build tools on every build.
Expand Down
4 changes: 2 additions & 2 deletions tooling/bundler/Cargo.toml
Expand Up @@ -2,7 +2,7 @@ workspace = { }

[package]
name = "tauri-bundler"
version = "1.0.6"
version = "1.0.7"
authors = [
"George Burton <burtonageo@gmail.com>",
"Tauri Programme within The Commons Conservancy"
Expand All @@ -17,7 +17,7 @@ rust-version = "1.57"
exclude = [ "CHANGELOG.md", "/target", "rustfmt.toml" ]

[dependencies]
tauri-utils = { version = "1.1.0", path = "../../core/tauri-utils", features = [ "resources" ] }
tauri-utils = { version = "1.1.1", path = "../../core/tauri-utils", features = [ "resources" ] }
image = "0.24.3"
libflate = "1.2"
anyhow = "1.0"
Expand Down
5 changes: 5 additions & 0 deletions tooling/cli/CHANGELOG.md
@@ -1,5 +1,10 @@
# Changelog

## \[1.1.1]

- Fix wrong cli metadata that caused new projects (created through `tauri init`) fail to build
- [db26aaf2](https://www.github.com/tauri-apps/tauri/commit/db26aaf2b44ce5335c9223c571ef2b2175e0cd6d) fix: fix wrong cli metadata ([#5214](https://www.github.com/tauri-apps/tauri/pull/5214)) on 2022-09-16

## \[1.1.0]

- Allow adding `build > beforeBundleCommand` in tauri.conf.json to run a shell command before the bundling phase.
Expand Down
6 changes: 3 additions & 3 deletions tooling/cli/Cargo.lock

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

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

[package]
name = "tauri-cli"
version = "1.1.0"
version = "1.1.1"
authors = [ "Tauri Programme within The Commons Conservancy" ]
edition = "2021"
rust-version = "1.57"
Expand Down Expand Up @@ -41,7 +41,7 @@ path = "src/main.rs"
[dependencies]
clap = { version = "3.2", features = [ "derive" ] }
anyhow = "1.0"
tauri-bundler = { version = "1.0.6", path = "../bundler" }
tauri-bundler = { version = "1.0.7", path = "../bundler" }
colored = "2.0"
once_cell = "1"
serde = { version = "1.0", features = [ "derive" ] }
Expand All @@ -51,7 +51,7 @@ notify = "4.0"
shared_child = "1.0"
toml_edit = "0.14"
json-patch = "0.2"
tauri-utils = { version = "1.1.0", path = "../../core/tauri-utils", features = [ "isolation", "schema", "config-json5", "config-toml" ] }
tauri-utils = { version = "1.1.1", path = "../../core/tauri-utils", features = [ "isolation", "schema", "config-json5", "config-toml" ] }
toml = "0.5"
valico = "3.6"
handlebars = "4.3"
Expand Down
6 changes: 3 additions & 3 deletions tooling/cli/metadata.json
@@ -1,8 +1,8 @@
{
"cli.js": {
"version": "1.1.0",
"version": "1.1.1",
"node": ">= 10.0.0"
},
"tauri": "1.1.0",
"tauri-build": "1.1.0"
"tauri": "1.1.1",
"tauri-build": "1.1.1"
}
5 changes: 5 additions & 0 deletions tooling/cli/node/CHANGELOG.md
@@ -1,5 +1,10 @@
# Changelog

## \[1.1.1]

- Fix wrong cli metadata that caused new projects (created through `tauri init`) fail to build
- [db26aaf2](https://www.github.com/tauri-apps/tauri/commit/db26aaf2b44ce5335c9223c571ef2b2175e0cd6d) fix: fix wrong cli metadata ([#5214](https://www.github.com/tauri-apps/tauri/pull/5214)) on 2022-09-16

## \[1.1.0]

- Allow adding `build > beforeBundleCommand` in tauri.conf.json to run a shell command before the bundling phase.
Expand Down
2 changes: 1 addition & 1 deletion tooling/cli/node/package.json
@@ -1,6 +1,6 @@
{
"name": "@tauri-apps/cli",
"version": "1.1.0",
"version": "1.1.1",
"description": "Command line interface for building Tauri apps",
"funding": {
"type": "opencollective",
Expand Down

0 comments on commit e4292ce

Please sign in to comment.