Skip to content

Commit cb519a1

Browse files
chore: prepare v1.0.0-rc.9 prerelease (#766)
* chore: prepare v1.0.0-rc.9 prerelease * chore: align preview launcher and identity test versions --------- Co-authored-by: Owen McGirr <o.a.mcgirr@gmail.com>
1 parent b5273f1 commit cb519a1

9 files changed

Lines changed: 10 additions & 10 deletions

File tree

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "switchify-pc",
33
"private": true,
4-
"version": "1.0.0-rc.8",
4+
"version": "1.0.0-rc.9",
55
"type": "module",
66
"engines": { "node": ">=24 <25" },
77
"scripts": {

src-tauri/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "switchify-pc"
3-
version = "1.0.0-rc.8"
3+
version = "1.0.0-rc.9"
44
description = "Switchify desktop companion for Android control"
55
authors = ["Enabo Apps"]
66
edition = "2021"

src-tauri/startup-launcher/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-tauri/startup-launcher/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "switchify-pc-startup"
3-
version = "1.0.0-rc.8"
3+
version = "1.0.0-rc.9"
44
edition = "2021"
55
rust-version = "1.97.1"
66
publish = false

src-tauri/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://schema.tauri.app/config/2",
33
"productName": "Switchify PC",
4-
"version": "1.0.0-rc.8",
4+
"version": "1.0.0-rc.9",
55
"identifier": "com.enaboapps.switchify.pc",
66
"build": {
77
"beforeDevCommand": "npm run dev",

src-tauri/tests/config.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ fn application_configuration_uses_the_promoted_identity() {
1818
serde_json::from_str(include_str!("../tauri.conf.json")).expect("valid Tauri config");
1919
assert_eq!(config["productName"], "Switchify PC");
2020
assert_eq!(config["identifier"], "com.enaboapps.switchify.pc");
21-
assert_eq!(config["version"], "1.0.0-rc.8");
21+
assert_eq!(config["version"], "1.0.0-rc.9");
2222
assert_eq!(config["app"]["windows"][0]["title"], "Switchify PC");
2323
assert_eq!(
2424
config["plugins"]["updater"]["endpoints"],

src/api.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export const browserState: AppState = {
2727
platform: navigator.userAgent.includes("Mac") ? "macos" : "windows",
2828
grid3: false, uiAccess: false, displayNavigation: false, cursorOverlay: true,
2929
},
30-
version: "1.0.0-rc.8",
30+
version: "1.0.0-rc.9",
3131
diagnostics: { recentBluetooth: [], lastDisconnect: null, recentErrors: [] },
3232
telemetry: { consent: "undecided", available: true },
3333
setup: { shown: false, completed: false, autoOpenEligible: true },

0 commit comments

Comments
 (0)