Skip to content

Commit

Permalink
Release v0.33.0
Browse files Browse the repository at this point in the history
  • Loading branch information
shaynekellyii committed Sep 5, 2023
1 parent f2cc90d commit 0d450c1
Show file tree
Hide file tree
Showing 12 changed files with 29 additions and 16 deletions.
2 changes: 1 addition & 1 deletion examples/bank-emulator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,5 @@ uuid = { version = "0.8", features = ["serde"] }

m10-bank-emulator-protos = { path = "../../shared/rust/bank-emulator-protos", features = ["client"] }
m10-rds-pool = { path = "../rds-pool" }
m10-sdk = "0.32.1"
m10-sdk = "0.33.0"
pala-types = { path = "../../shared/rust/pala-types" }
2 changes: 1 addition & 1 deletion examples/bank-emulator/integration-tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ tonic = "0.5"
tokio = { version = "1.7.0", features = ["full"] }
uuid = { version = "0.8", features = ["serde"] }
m10-bank-emulator = { path = ".." }
m10-sdk = "0.32.1"
m10-sdk = "0.33.0"
2 changes: 1 addition & 1 deletion examples/cbdc-admin/src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ async-trait = "0.1"
base64 = "0.13"
config = { version = "0.11", default-features = false, features = ["toml"] }
hex = "0.4"
m10-sdk = "0.32.1"
m10-sdk = "0.33.0"
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_with = "1"
Expand Down
4 changes: 2 additions & 2 deletions examples/m10_cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ hex = "0.4"
hyper = "0.14"
hyper-rustls = "0.22"
libxid = { path = "../crates/libxid" }
m10-sdk = "0.32.1"
m10-protos = { version = "0.32.1", features = ["dynamic2"] }
m10-sdk = "0.33.0"
m10-protos = { version = "0.33.0", features = ["dynamic2"] }
ring = { version = "0.16", features = ["std"] }
ron = "0.8"
serde = { version = "1", features = ["derive"] }
Expand Down
13 changes: 13 additions & 0 deletions flutter/m10_sdk/.vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "m10_sdk",
"request": "launch",
"type": "dart"
}
]
}
2 changes: 1 addition & 1 deletion flutter/m10_sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

* Initial release.

## 0.32.1
## 0.33.0

* ...
4 changes: 2 additions & 2 deletions flutter/m10_sdk/lib/m10_sdk.dart
Original file line number Diff line number Diff line change
Expand Up @@ -917,7 +917,7 @@ class M10Sdk {
/// Creates a transferable offline token by transfering
/// from the specified ledger account.
///
Future<(Int64, OfflineToken)> createToken({
Future<(TransactionResponse, OfflineToken)> createToken({
required String accountId,
required Int64 value,
required String operator,
Expand All @@ -939,7 +939,7 @@ class M10Sdk {
);

final response = await client.tx.createTransaction(envelope);
return (response.txId, response.token);
return (response, response.token);
}

///
Expand Down
2 changes: 1 addition & 1 deletion flutter/m10_sdk/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: m10_sdk
description: This package allows Flutter and Dart applications to interact with the M10 platform.
repository: https://github.com/m10io/sdk
version: 0.32.1
version: 0.33.0

environment:
sdk: ">=3.0.0 <4.0.0"
Expand Down
2 changes: 1 addition & 1 deletion node/m10-sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "m10-sdk",
"version": "0.32.1",
"version": "0.33.0",
"description": "M10 SDK",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion rust/protos/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "m10-protos"
version = "0.32.1"
version = "0.33.0"
authors = ["Sascha Wise <[email protected]>", "Sam De Roeck <[email protected]>"]
edition = "2021"
description = "M10 Protocol Buffers"
Expand Down
6 changes: 3 additions & 3 deletions rust/sdk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "m10-sdk"
version = "0.32.1"
version = "0.33.0"
authors = ["Michael Wittner <[email protected]>", "Sam De Roeck <[email protected]>"]
edition = "2021"
description = "M10 SDK API"
Expand All @@ -24,7 +24,7 @@ format = ["parse-display", "base64", "hex/default", "serde_json", "serde_yaml",
bytes = "1"
fastrand = "1"
hex = { version = "0.4", default-features = false }
m10-protos = { version = "0.32", path = "../protos" }
m10-protos = { version = "0.33", path = "../protos" }
uuid = { version = "0.8", features = ["serde", "v4"] }
serde = { version = "1", features = ["derive"] }
serde_with = { version = "1", features = ["hex"] }
Expand All @@ -39,7 +39,7 @@ ring = { version = "0.16", features = ["std"], optional = true }
# service
futures-core = { version = "0.3", optional = true }
futures-util = { version = "0.3", optional = true }
m10-signing = { version = "0.32.1", path = "../signing", optional = true }
m10-signing = { version = "0.33.0", path = "../signing", optional = true }
tonic = { version = "0.5", features = ["tls", "tls-roots"], optional = true }

# format
Expand Down
4 changes: 2 additions & 2 deletions rust/signing/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "m10-signing"
version = "0.32.1"
version = "0.33.0"
authors = ["Michael Wittner <[email protected]>"]
edition = "2021"
description = "M10 utility library for request signing"
Expand All @@ -11,7 +11,7 @@ repository = "https://github.com/m10io/sdk"
[dependencies]
async-trait = "0.1"
base64 = "0.13"
m10-protos = { version = "0.32", path = "../protos" }
m10-protos = { version = "0.33", path = "../protos" }
serde = { version = "1", default-features = false, features = ["alloc", "derive", "rc"] }
ring = { version = "0.16", features = ["std"] }
thiserror = "1"

0 comments on commit 0d450c1

Please sign in to comment.