Skip to content

Commit

Permalink
publish new versions
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasfernog authored Sep 14, 2023
1 parent 454428c commit 341d26b
Show file tree
Hide file tree
Showing 14 changed files with 108 additions and 41 deletions.
2 changes: 2 additions & 0 deletions .changes/pre.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"tag": "alpha",
"changes": [
".changes/deep-link-initial-release.md",
".changes/dialog-async-message-dialog.md",
".changes/disable-window-controls-api-options.md",
".changes/disable-window-controls-api.md",
Expand All @@ -18,6 +19,7 @@
".changes/persisted-scope-asset.md",
".changes/persisted-scope-glob.md",
".changes/positioner-tray-flag.md",
".changes/scanner-initial-release.md",
".changes/shell-command-apis.md",
".changes/shell-detached.md",
".changes/stronghold-arg-name.md",
Expand Down
6 changes: 6 additions & 0 deletions examples/api/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## \[2.0.0-alpha.3]

### Dependencies

- Upgraded to `barcode-scanner-js@2.0.0-alpha.0`

## \[2.0.0-alpha.2]

### Dependencies
Expand Down
4 changes: 2 additions & 2 deletions examples/api/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "svelte-app",
"private": true,
"version": "2.0.0-alpha.2",
"version": "2.0.0-alpha.3",
"type": "module",
"scripts": {
"dev": "vite --clearScreen false",
Expand All @@ -11,7 +11,7 @@
"dependencies": {
"@tauri-apps/api": "2.0.0-alpha.8",
"@tauri-apps/plugin-app": "2.0.0-alpha.1",
"@tauri-apps/plugin-barcode-scanner": "1.0.0",
"@tauri-apps/plugin-barcode-scanner": "2.0.0-alpha.0",
"@tauri-apps/plugin-cli": "2.0.0-alpha.1",
"@tauri-apps/plugin-clipboard-manager": "2.0.0-alpha.1",
"@tauri-apps/plugin-dialog": "2.0.0-alpha.1",
Expand Down
6 changes: 6 additions & 0 deletions examples/api/src-tauri/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## \[2.0.0-alpha.5]

### Dependencies

- Upgraded to `barcode-scanner@2.0.0-alpha.0`

## \[2.0.0-alpha.4]

### Dependencies
Expand Down
4 changes: 2 additions & 2 deletions examples/api/src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "api"
publish = false
version = "2.0.0-alpha.4"
version = "2.0.0-alpha.5"
description = "An example Tauri Application showcasing the api"
edition = "2021"
rust-version = { workspace = true }
Expand Down Expand Up @@ -47,7 +47,7 @@ tauri-plugin-global-shortcut = { path = "../../../plugins/global-shortcut", vers
tauri-plugin-updater = { path = "../../../plugins/updater", version = "2.0.0-alpha.2" }

[target."cfg(any(target_os = \"android\", target_os = \"ios\"))".dependencies]
tauri-plugin-barcode-scanner = { path = "../../../plugins/barcode-scanner/", version = "1.0.0" }
tauri-plugin-barcode-scanner = { path = "../../../plugins/barcode-scanner/", version = "2.0.0-alpha.0" }

[target."cfg(target_os = \"windows\")".dependencies]
window-shadows = "0.2"
Expand Down
5 changes: 5 additions & 0 deletions plugins/barcode-scanner/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Changelog

## \[2.0.0-alpha.0]

- [`454428c`](https://github.com/tauri-apps/plugins-workspace/commit/454428cd50ce4962f0bad8e355aebc68af8cc61f)([#536](https://github.com/tauri-apps/plugins-workspace/pull/536)) Initial release.
2 changes: 1 addition & 1 deletion plugins/barcode-scanner/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tauri-plugin-barcode-scanner"
version = "1.0.0"
version = "2.0.0-alpha.0"
description = "Scan QR codes, EAN-13 and other kinds of barcodes on Android and iOS"
edition = { workspace = true }
authors = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion plugins/barcode-scanner/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tauri-apps/plugin-barcode-scanner",
"version": "1.0.0",
"version": "2.0.0-alpha.0",
"description": "Scan QR codes, EAN-13 and other kinds of barcodes on Android and iOS",
"license": "MIT or APACHE-2.0",
"authors": [
Expand Down
5 changes: 5 additions & 0 deletions plugins/deep-link/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Changelog

## \[2.0.0-alpha.0]

- [`eccd6f9`](https://github.com/tauri-apps/plugins-workspace/commit/eccd6f977af7629255b6f5a5205666c9079a86ed)([#504](https://github.com/tauri-apps/plugins-workspace/pull/504)) Initial release.
4 changes: 1 addition & 3 deletions plugins/deep-link/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
[package]
name = "tauri-plugin-deep-link"
version = "1.0.0"
version = "2.0.0-alpha.0"
description = "Set your Tauri application as the default handler for an URL"
authors = { workspace = true }
license = { workspace = true }
edition = { workspace = true }
rust-version = { workspace = true }
links = "tauri-plugin-deep-link"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[build-dependencies]
serde = { workspace = true }
serde_json = { workspace = true }
Expand Down
7 changes: 7 additions & 0 deletions plugins/deep-link/examples/app/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Changelog

## \[0.0.1-alpha.0]

### Dependencies

- Upgraded to `deep-link-js@2.0.0-alpha.0`
4 changes: 2 additions & 2 deletions plugins/deep-link/examples/app/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "deep-link-example",
"private": true,
"version": "0.0.0",
"version": "0.0.1-alpha.0",
"type": "module",
"scripts": {
"dev": "vite",
Expand All @@ -11,7 +11,7 @@
},
"dependencies": {
"@tauri-apps/api": "2.0.0-alpha.6",
"@tauri-apps/plugin-deep-link": "1.0.0"
"@tauri-apps/plugin-deep-link": "2.0.0-alpha.0"
},
"devDependencies": {
"@tauri-apps/cli": "^2.0.0-alpha.14",
Expand Down
2 changes: 1 addition & 1 deletion plugins/deep-link/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tauri-apps/plugin-deep-link",
"version": "1.0.0",
"version": "2.0.0-alpha.0",
"description": "Set your Tauri application as the default handler for an URL",
"license": "MIT or APACHE-2.0",
"authors": [
Expand Down
Loading

0 comments on commit 341d26b

Please sign in to comment.