From f2cc90ded594b0eaae8d25e01a6c39216ef7a1e3 Mon Sep 17 00:00:00 2001 From: Daniel Date: Thu, 31 Aug 2023 21:42:49 -0700 Subject: [PATCH] Release v0.32.1 --- examples/bank-emulator/Cargo.toml | 2 +- examples/bank-emulator/integration-tests/Cargo.toml | 2 +- examples/cbdc-admin/src-tauri/Cargo.toml | 2 +- examples/m10_cli/Cargo.toml | 4 ++-- flutter/m10_sdk/CHANGELOG.md | 2 +- flutter/m10_sdk/pubspec.yaml | 2 +- node/m10-sdk/package.json | 2 +- rust/protos/Cargo.toml | 2 +- rust/protos/build.rs | 2 +- rust/sdk/Cargo.toml | 4 ++-- rust/signing/Cargo.toml | 2 +- 11 files changed, 13 insertions(+), 13 deletions(-) diff --git a/examples/bank-emulator/Cargo.toml b/examples/bank-emulator/Cargo.toml index 5406b21..d67c567 100644 --- a/examples/bank-emulator/Cargo.toml +++ b/examples/bank-emulator/Cargo.toml @@ -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" } diff --git a/examples/bank-emulator/integration-tests/Cargo.toml b/examples/bank-emulator/integration-tests/Cargo.toml index 78f6981..f008e16 100644 --- a/examples/bank-emulator/integration-tests/Cargo.toml +++ b/examples/bank-emulator/integration-tests/Cargo.toml @@ -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" diff --git a/examples/cbdc-admin/src-tauri/Cargo.toml b/examples/cbdc-admin/src-tauri/Cargo.toml index c615e3e..3d9d586 100644 --- a/examples/cbdc-admin/src-tauri/Cargo.toml +++ b/examples/cbdc-admin/src-tauri/Cargo.toml @@ -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" diff --git a/examples/m10_cli/Cargo.toml b/examples/m10_cli/Cargo.toml index a9a79dd..586588e 100644 --- a/examples/m10_cli/Cargo.toml +++ b/examples/m10_cli/Cargo.toml @@ -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"] } diff --git a/flutter/m10_sdk/CHANGELOG.md b/flutter/m10_sdk/CHANGELOG.md index d9e61f3..69ef201 100644 --- a/flutter/m10_sdk/CHANGELOG.md +++ b/flutter/m10_sdk/CHANGELOG.md @@ -2,6 +2,6 @@ * Initial release. -## 0.32.0 +## 0.32.1 * ... diff --git a/flutter/m10_sdk/pubspec.yaml b/flutter/m10_sdk/pubspec.yaml index d76d3bb..0cfef1f 100644 --- a/flutter/m10_sdk/pubspec.yaml +++ b/flutter/m10_sdk/pubspec.yaml @@ -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" diff --git a/node/m10-sdk/package.json b/node/m10-sdk/package.json index 40e4ed0..22a4b70 100644 --- a/node/m10-sdk/package.json +++ b/node/m10-sdk/package.json @@ -1,6 +1,6 @@ { "name": "m10-sdk", - "version": "0.32.0", + "version": "0.32.1", "description": "M10 SDK", "repository": { "type": "git", diff --git a/rust/protos/Cargo.toml b/rust/protos/Cargo.toml index 5887bf1..571ff7c 100644 --- a/rust/protos/Cargo.toml +++ b/rust/protos/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "m10-protos" -version = "0.32.0" +version = "0.32.1" authors = ["Sascha Wise ", "Sam De Roeck "] edition = "2021" description = "M10 Protocol Buffers" diff --git a/rust/protos/build.rs b/rust/protos/build.rs index 08bf0be..83c920e 100644 --- a/rust/protos/build.rs +++ b/rust/protos/build.rs @@ -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> { diff --git a/rust/sdk/Cargo.toml b/rust/sdk/Cargo.toml index 67aa5e2..ef9d8ee 100644 --- a/rust/sdk/Cargo.toml +++ b/rust/sdk/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "m10-sdk" -version = "0.32.0" +version = "0.32.1" authors = ["Michael Wittner ", "Sam De Roeck "] edition = "2021" description = "M10 SDK API" @@ -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 diff --git a/rust/signing/Cargo.toml b/rust/signing/Cargo.toml index b9e3f6d..fffd608 100644 --- a/rust/signing/Cargo.toml +++ b/rust/signing/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "m10-signing" -version = "0.32.0" +version = "0.32.1" authors = ["Michael Wittner "] edition = "2021" description = "M10 utility library for request signing"