Skip to content

Commit 373e51a

Browse files
authored
Merge pull request #700 from xch-dev/prep-0.12.5
Prepare 0.12.5
2 parents 2c4b4da + 0d9ae06 commit 373e51a

File tree

25 files changed

+228
-171
lines changed

25 files changed

+228
-171
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -157,13 +157,7 @@ jobs:
157157
if: matrix.platform_name == 'iOS'
158158
uses: maxim-lobanov/setup-xcode@v1
159159
with:
160-
xcode-version: latest-stable
161-
162-
- name: Download iOS platform
163-
if: matrix.platform_name == 'iOS'
164-
run: |
165-
xcodebuild -version
166-
xcodebuild -downloadPlatform iOS
160+
xcode-version: 16.4.0
167161

168162
- name: Bindgen CLI
169163
run: cargo install bindgen-cli --locked

Cargo.lock

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

crates/sage-api/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sage-api"
3-
version = "0.12.4"
3+
version = "0.12.5"
44
edition = "2021"
55
license = "Apache-2.0"
66
description = "API definitions for the Sage wallet."

crates/sage-api/macro/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sage-api-macro"
3-
version = "0.12.4"
3+
version = "0.12.5"
44
edition = "2021"
55
license = "Apache-2.0"
66
description = "A macro for implementing things for each of the Sage API endpoints."

crates/sage-api/macro/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ pub fn impl_endpoints_tauri(input: TokenStream) -> TokenStream {
1919
/// Attribute macro for `OpenAPI` metadata
2020
///
2121
/// Usage:
22-
/// ```
22+
/// ```ignore
2323
/// #[openapi(
2424
/// tag = "Authentication & Keys",
2525
/// description = "Authenticate and log into a wallet..."

crates/sage-api/src/requests/data.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ pub struct GetVersion {}
204204
#[cfg_attr(feature = "openapi", derive(utoipa::ToSchema))]
205205
pub struct GetVersionResponse {
206206
/// Semantic version string
207-
#[cfg_attr(feature = "openapi", schema(example = "0.12.4"))]
207+
#[cfg_attr(feature = "openapi", schema(example = "0.12.5"))]
208208
pub version: String,
209209
}
210210

crates/sage-assets/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sage-assets"
3-
version = "0.12.4"
3+
version = "0.12.5"
44
edition = "2021"
55
license = "Apache-2.0"
66
description = "Fetches non-critical data from various APIs for use in Sage wallet."

crates/sage-cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sage-cli"
3-
version = "0.12.4"
3+
version = "0.12.5"
44
edition = "2021"
55
license = "Apache-2.0"
66
description = "A CLI and RPC for Sage wallet."

crates/sage-client/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sage-client"
3-
version = "0.12.4"
3+
version = "0.12.5"
44
edition = "2021"
55
license = "Apache-2.0"
66
description = "An RPC client for Sage wallet."

crates/sage-config/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sage-config"
3-
version = "0.12.4"
3+
version = "0.12.5"
44
edition = "2021"
55
license = "Apache-2.0"
66
description = "Configuration for the Sage wallet."

0 commit comments

Comments
 (0)