Skip to content

Commit

Permalink
Release v0.32.1
Browse files Browse the repository at this point in the history
  • Loading branch information
x46085 committed Sep 1, 2023
1 parent 6566af7 commit f2cc90d
Show file tree
Hide file tree
Showing 11 changed files with 13 additions and 13 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.0"
m10-sdk = "0.32.1"
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.0"
m10-sdk = "0.32.1"
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.0"
m10-sdk = "0.32.1"
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.0"
m10-protos = { version = "0.32.0", features = ["dynamic2"] }
m10-sdk = "0.32.1"
m10-protos = { version = "0.32.1", features = ["dynamic2"] }
ring = { version = "0.16", features = ["std"] }
ron = "0.8"
serde = { version = "1", features = ["derive"] }
Expand Down
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.0
## 0.32.1

* ...
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.0
version: 0.32.1

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.0",
"version": "0.32.1",
"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.0"
version = "0.32.1"
authors = ["Sascha Wise <[email protected]>", "Sam De Roeck <[email protected]>"]
edition = "2021"
description = "M10 Protocol Buffers"
Expand Down
2 changes: 1 addition & 1 deletion rust/protos/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use std::{
};

fn protobuf_dir() -> String {
std::env::var("M10_PROTOBUFS").unwrap_or_else(|_| "protobuf".to_string())
std::env::var("M10_PROTOBUFS").unwrap_or_else(|_| "./src/protobuf".to_string())
}

fn main() -> Result<(), Box<dyn std::error::Error>> {
Expand Down
4 changes: 2 additions & 2 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.0"
version = "0.32.1"
authors = ["Michael Wittner <[email protected]>", "Sam De Roeck <[email protected]>"]
edition = "2021"
description = "M10 SDK API"
Expand Down Expand Up @@ -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.0", path = "../signing", optional = true }
m10-signing = { version = "0.32.1", path = "../signing", optional = true }
tonic = { version = "0.5", features = ["tls", "tls-roots"], optional = true }

# format
Expand Down
2 changes: 1 addition & 1 deletion 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.0"
version = "0.32.1"
authors = ["Michael Wittner <[email protected]>"]
edition = "2021"
description = "M10 utility library for request signing"
Expand Down

0 comments on commit f2cc90d

Please sign in to comment.