Skip to content

Commit 562cd49

Browse files
VictorLuxclaude
andcommitted
chore: bump version to 1.1.0 across all platforms
- Cargo.toml workspace: 0.1.0 → 1.1.0 - Android: versionCode 1→2, versionName "1.0"→"1.1.0" - Desktop (Compose): version + packageVersion 1.0.0→1.1.0 - iOS/macOS: CFBundleShortVersionString 0.1.0→1.1.0, build 1→2 CLI + egui auto-inherit via env!("CARGO_PKG_VERSION"). distribute.sh reads from Cargo.toml dynamically. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 8272fef commit 562cd49

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ members = [
1414
]
1515

1616
[workspace.package]
17-
version = "0.1.0"
17+
version = "1.1.0"
1818
edition = "2021"
1919
license = "MIT"
2020

platforms/android/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ android {
1212
applicationId = "com.zipherx.wallet"
1313
minSdk = 26
1414
targetSdk = 35
15-
versionCode = 1
16-
versionName = "1.0"
15+
versionCode = 2
16+
versionName = "1.1.0"
1717

1818
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
1919

platforms/apple/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
<key>CFBundlePackageType</key>
1616
<string>APPL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>0.1.0</string>
18+
<string>1.1.0</string>
1919
<key>CFBundleVersion</key>
20-
<string>1</string>
20+
<string>2</string>
2121
<key>LSMinimumSystemVersion</key>
2222
<string>14.0</string>
2323
<key>NSFaceIDUsageDescription</key>

platforms/desktop/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins {
77
}
88

99
group = "com.zipherx.wallet"
10-
version = "1.0.0"
10+
version = "1.1.0"
1111

1212
repositories {
1313
mavenCentral()
@@ -40,7 +40,7 @@ compose.desktop {
4040
nativeDistributions {
4141
targetFormats(TargetFormat.Dmg, TargetFormat.Msi, TargetFormat.Deb, TargetFormat.Rpm)
4242
packageName = "ZipherX"
43-
packageVersion = "1.0.0"
43+
packageVersion = "1.1.0"
4444
description = "ZipherX — Privacy-first Zclassic wallet"
4545
vendor = "ZipherX"
4646

0 commit comments

Comments
 (0)