From 2cbfec424a8bf5dd8789da51d34078ee21083411 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 22 Jul 2024 10:04:33 +0700 Subject: [PATCH] chore: release 0.2.1 (#147) --- bin/Cargo.toml | 2 +- fuzz/Cargo.toml | 2 +- packages/core/identity/CHANGELOG.md | 5 +++++ packages/core/identity/Cargo.toml | 2 +- packages/core/router/CHANGELOG.md | 5 +++++ packages/core/router/Cargo.toml | 6 +++--- packages/core/utils/CHANGELOG.md | 5 +++++ packages/core/utils/Cargo.toml | 2 +- packages/network/CHANGELOG.md | 8 ++++++++ packages/network/Cargo.toml | 8 ++++---- packages/runner/CHANGELOG.md | 8 ++++++++ packages/runner/Cargo.toml | 8 ++++---- 12 files changed, 46 insertions(+), 15 deletions(-) diff --git a/bin/Cargo.toml b/bin/Cargo.toml index be906687..adf7ed79 100644 --- a/bin/Cargo.toml +++ b/bin/Cargo.toml @@ -14,7 +14,7 @@ signal-hook = "0.3.17" log.workspace = true clap.workspace = true serde.workspace = true -atm0s-sdn = { path = "../packages/runner", version = "0.2.0", features = ["vpn"] } +atm0s-sdn = { path = "../packages/runner", version = "0.2.1", features = ["vpn"] } tokio = { version = "1", features = ["full"] } poem = { version = "2.0", features = ["embed", "static-files", "websocket"] } rust-embed = { version = "8.2", optional = true } diff --git a/fuzz/Cargo.toml b/fuzz/Cargo.toml index 5a90470f..1c87c964 100644 --- a/fuzz/Cargo.toml +++ b/fuzz/Cargo.toml @@ -9,7 +9,7 @@ cargo-fuzz = true [dependencies] libfuzzer-sys = "0.4" -atm0s-sdn-network = { path = "../packages/network", version = "0.4.0", features = ["fuzz"] } +atm0s-sdn-network = { path = "../packages/network", version = "0.4.1", features = ["fuzz"] } [[bin]] name = "network_control_pkt" diff --git a/packages/core/identity/CHANGELOG.md b/packages/core/identity/CHANGELOG.md index 7d900bad..2d03cabf 100644 --- a/packages/core/identity/CHANGELOG.md +++ b/packages/core/identity/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.1](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-identity-v0.3.0...atm0s-sdn-identity-v0.3.1) - 2024-07-22 + +### Other +- clippy fixes ([#167](https://github.com/8xFF/atm0s-sdn/pull/167)) + ## [0.2.0](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-identity-v0.1.2...atm0s-sdn-identity-v0.2.0) - 2023-12-27 ### Added diff --git a/packages/core/identity/Cargo.toml b/packages/core/identity/Cargo.toml index 046946b1..cc0c307b 100644 --- a/packages/core/identity/Cargo.toml +++ b/packages/core/identity/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "atm0s-sdn-identity" -version = "0.3.0" +version = "0.3.1" edition = "2021" description = "A library for generating and verifying identities for atm0s-sdn" license = "MIT" diff --git a/packages/core/router/CHANGELOG.md b/packages/core/router/CHANGELOG.md index 382bcc9a..f2856d15 100644 --- a/packages/core/router/CHANGELOG.md +++ b/packages/core/router/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.1](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-router-v0.2.0...atm0s-sdn-router-v0.2.1) - 2024-07-22 + +### Other +- clippy fixes ([#167](https://github.com/8xFF/atm0s-sdn/pull/167)) + ## [0.1.4](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-router-v0.1.3...atm0s-sdn-router-v0.1.4) - 2023-12-27 ### Other diff --git a/packages/core/router/Cargo.toml b/packages/core/router/Cargo.toml index 91017f68..1c71c28b 100644 --- a/packages/core/router/Cargo.toml +++ b/packages/core/router/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "atm0s-sdn-router" -version = "0.2.0" +version = "0.2.1" edition = "2021" description = "Router interface for atm0s-sdn" license = "MIT" @@ -8,8 +8,8 @@ license = "MIT" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -atm0s-sdn-identity = { path = "../identity", version = "0.3.0" } -atm0s-sdn-utils = { path = "../utils", version = "0.2.0" } +atm0s-sdn-identity = { path = "../identity", version = "0.3.1" } +atm0s-sdn-utils = { path = "../utils", version = "0.2.1" } serde = { workspace = true } log = { workspace = true } mockall = { workspace = true } diff --git a/packages/core/utils/CHANGELOG.md b/packages/core/utils/CHANGELOG.md index f76c5197..8f804ec8 100644 --- a/packages/core/utils/CHANGELOG.md +++ b/packages/core/utils/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.1](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-utils-v0.2.0...atm0s-sdn-utils-v0.2.1) - 2024-07-22 + +### Other +- clippy fixes ([#167](https://github.com/8xFF/atm0s-sdn/pull/167)) + ## [0.1.1](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-utils-v0.1.0...atm0s-sdn-utils-v0.1.1) - 2023-12-11 ### Added diff --git a/packages/core/utils/Cargo.toml b/packages/core/utils/Cargo.toml index baf58d08..f88f9cc1 100644 --- a/packages/core/utils/Cargo.toml +++ b/packages/core/utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "atm0s-sdn-utils" -version = "0.2.0" +version = "0.2.1" edition = "2021" description = "A collection of utilities for atm0s-sdn" license = "MIT" diff --git a/packages/network/CHANGELOG.md b/packages/network/CHANGELOG.md index ec22d3b1..0c64077d 100644 --- a/packages/network/CHANGELOG.md +++ b/packages/network/CHANGELOG.md @@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.4.1](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-network-v0.4.0...atm0s-sdn-network-v0.4.1) - 2024-07-22 + +### Fixed +- switch to single bind for resolve connect error with multi-addresses machine ([#172](https://github.com/8xFF/atm0s-sdn/pull/172)) + +### Other +- clippy fixes ([#167](https://github.com/8xFF/atm0s-sdn/pull/167)) + ## [0.3.1](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-network-v0.3.0...atm0s-sdn-network-v0.3.1) - 2024-01-24 ### Other diff --git a/packages/network/Cargo.toml b/packages/network/Cargo.toml index a296ddf5..a5108215 100644 --- a/packages/network/Cargo.toml +++ b/packages/network/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "atm0s-sdn-network" -version = "0.4.0" +version = "0.4.1" edition = "2021" description = "Main network-plane of atm0s-sdn" license = "MIT" @@ -8,9 +8,9 @@ license = "MIT" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -atm0s-sdn-utils = { path = "../core/utils", version = "0.2.0" } -atm0s-sdn-identity = { path = "../core/identity", version = "0.3.0" } -atm0s-sdn-router = { path = "../core/router", version = "0.2.0" } +atm0s-sdn-utils = { path = "../core/utils", version = "0.2.1" } +atm0s-sdn-identity = { path = "../core/identity", version = "0.3.1" } +atm0s-sdn-router = { path = "../core/router", version = "0.2.1" } sans-io-runtime = { workspace = true, default-features = false } rand = { workspace = true } mockall = { workspace = true } diff --git a/packages/runner/CHANGELOG.md b/packages/runner/CHANGELOG.md index b2815798..0c3f1afd 100644 --- a/packages/runner/CHANGELOG.md +++ b/packages/runner/CHANGELOG.md @@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.1](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-v0.2.0...atm0s-sdn-v0.2.1) - 2024-07-22 + +### Fixed +- switch to single bind for resolve connect error with multi-addresses machine ([#172](https://github.com/8xFF/atm0s-sdn/pull/172)) + +### Other +- clippy fixes ([#167](https://github.com/8xFF/atm0s-sdn/pull/167)) + ## [0.1.10](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-v0.1.9...atm0s-sdn-v0.1.10) - 2024-02-21 ### Other diff --git a/packages/runner/Cargo.toml b/packages/runner/Cargo.toml index e028bb9b..2979fdf3 100644 --- a/packages/runner/Cargo.toml +++ b/packages/runner/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "atm0s-sdn" -version = "0.2.0" +version = "0.2.1" edition = "2021" repository = "https://github.com/8xFF/atm0s-sdn" description = "Decentralized Ultra-Low-Latency Software Defined Network" @@ -11,9 +11,9 @@ license = "MIT" [dependencies] thiserror = { workspace = true } sans-io-runtime = { workspace = true, features = ["poll-backend", "polling-backend", "udp"] } -atm0s-sdn-identity = { path = "../core/identity", version = "0.3.0" } -atm0s-sdn-router = { path = "../core/router", version = "0.2.0" } -atm0s-sdn-network = { path = "../network", version = "0.4.0" } +atm0s-sdn-identity = { path = "../core/identity", version = "0.3.1" } +atm0s-sdn-router = { path = "../core/router", version = "0.2.1" } +atm0s-sdn-network = { path = "../network", version = "0.4.1" } convert-enum = { workspace = true } num_enum = { workspace = true }