From 8a85cbfebae9bd8bfb2c775d6dfd5f5767a9ce04 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 28 Dec 2023 09:22:14 +0700 Subject: [PATCH] chore: release (#99) --- examples/Cargo.toml | 6 ++--- packages/apps/redis/CHANGELOG.md | 5 ++++ packages/apps/redis/Cargo.toml | 10 ++++---- packages/core/identity/CHANGELOG.md | 5 ++++ packages/core/identity/Cargo.toml | 2 +- packages/core/router/CHANGELOG.md | 5 ++++ packages/core/router/Cargo.toml | 4 ++-- packages/integration_tests/Cargo.toml | 4 ++-- packages/network/CHANGELOG.md | 6 +++++ packages/network/Cargo.toml | 8 +++---- .../routers/layers_spread_router/CHANGELOG.md | 5 ++++ .../routers/layers_spread_router/Cargo.toml | 6 ++--- packages/runner/CHANGELOG.md | 9 +++++++ packages/runner/Cargo.toml | 24 +++++++++---------- packages/services/dht_discovery/CHANGELOG.md | 5 ++++ packages/services/dht_discovery/Cargo.toml | 10 ++++---- packages/services/key_value/CHANGELOG.md | 5 ++++ packages/services/key_value/Cargo.toml | 8 +++---- .../layers_spread_router_sync/CHANGELOG.md | 5 ++++ .../layers_spread_router_sync/Cargo.toml | 10 ++++---- .../services/manual_discovery/CHANGELOG.md | 5 ++++ packages/services/manual_discovery/Cargo.toml | 10 ++++---- packages/services/pub_sub/CHANGELOG.md | 5 ++++ packages/services/pub_sub/Cargo.toml | 10 ++++---- packages/services/rpc/CHANGELOG.md | 5 ++++ packages/services/rpc/Cargo.toml | 8 +++---- packages/services/tun_tap/CHANGELOG.md | 5 ++++ packages/services/tun_tap/Cargo.toml | 8 +++---- packages/transports/compose/Cargo.toml | 2 +- packages/transports/tcp/CHANGELOG.md | 6 +++++ packages/transports/tcp/Cargo.toml | 8 +++---- packages/transports/udp/CHANGELOG.md | 6 +++++ packages/transports/udp/Cargo.toml | 8 +++---- packages/transports/vnet/CHANGELOG.md | 5 ++++ packages/transports/vnet/Cargo.toml | 8 +++---- 35 files changed, 164 insertions(+), 77 deletions(-) diff --git a/examples/Cargo.toml b/examples/Cargo.toml index 88c00267..4d0add38 100644 --- a/examples/Cargo.toml +++ b/examples/Cargo.toml @@ -9,9 +9,9 @@ publish = false # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -atm0s-sdn = { path = "../packages/runner", features = ["all"], version = "0.1.4" } -atm0s-sdn-tun-tap = { path = "../packages/services/tun_tap", version = "0.1.4" } -atm0s-sdn-redis-server = { path = "../packages/apps/redis", version = "0.1.3" } +atm0s-sdn = { path = "../packages/runner", features = ["all"], version = "0.1.5" } +atm0s-sdn-tun-tap = { path = "../packages/services/tun_tap", version = "0.1.5" } +atm0s-sdn-redis-server = { path = "../packages/apps/redis", version = "0.1.4" } reedline-repl-rs = { version = "1.0.7", features = ["async"] } thiserror = { workspace = true } async-std = { workspace = true } diff --git a/packages/apps/redis/CHANGELOG.md b/packages/apps/redis/CHANGELOG.md index 0fe0d3ac..7f2031bf 100644 --- a/packages/apps/redis/CHANGELOG.md +++ b/packages/apps/redis/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.4](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-redis-server-v0.1.3...atm0s-sdn-redis-server-v0.1.4) - 2023-12-27 + +### Other +- updated the following local packages: atm0s-sdn-identity, atm0s-sdn-key-value, atm0s-sdn-network, atm0s-sdn-router + ## [0.1.3](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-redis-server-v0.1.2...atm0s-sdn-redis-server-v0.1.3) - 2023-12-12 ### Other diff --git a/packages/apps/redis/Cargo.toml b/packages/apps/redis/Cargo.toml index 4936d306..35119417 100644 --- a/packages/apps/redis/Cargo.toml +++ b/packages/apps/redis/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "atm0s-sdn-redis-server" -version = "0.1.3" +version = "0.1.4" edition = "2021" description = "A simple redis server for atm0s-sdn" license = "MIT" @@ -8,11 +8,11 @@ license = "MIT" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -atm0s-sdn-identity = { path = "../../core/identity", version = "0.1.2" } -atm0s-sdn-router = { path = "../../core/router", version = "0.1.3" } +atm0s-sdn-identity = { path = "../../core/identity", version = "0.2.0" } +atm0s-sdn-router = { path = "../../core/router", version = "0.1.4" } atm0s-sdn-utils = { path = "../../core/utils", version = "0.1.1" } -atm0s-sdn-network = { path = "../../network", version = "0.2.2" } -atm0s-sdn-key-value = { path = "../../services/key_value", version = "0.1.5" } +atm0s-sdn-network = { path = "../../network", version = "0.3.0" } +atm0s-sdn-key-value = { path = "../../services/key_value", version = "0.1.6" } log = { workspace = true } serde = { workspace = true } async-std = { workspace = true } diff --git a/packages/core/identity/CHANGELOG.md b/packages/core/identity/CHANGELOG.md index 05489d2c..7d900bad 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.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 +- node multi addrs ([#98](https://github.com/8xFF/atm0s-sdn/pull/98)) + ## [0.1.2](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-identity-v0.1.1...atm0s-sdn-identity-v0.1.2) - 2023-12-11 ### Other diff --git a/packages/core/identity/Cargo.toml b/packages/core/identity/Cargo.toml index 8593eb94..b706e483 100644 --- a/packages/core/identity/Cargo.toml +++ b/packages/core/identity/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "atm0s-sdn-identity" -version = "0.1.2" +version = "0.2.0" 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 f010e6f8..382bcc9a 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.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 +- update Cargo.toml dependencies + ## [0.1.3](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-router-v0.1.2...atm0s-sdn-router-v0.1.3) - 2023-12-12 ### Other diff --git a/packages/core/router/Cargo.toml b/packages/core/router/Cargo.toml index 2e4f9950..a26cb8e5 100644 --- a/packages/core/router/Cargo.toml +++ b/packages/core/router/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "atm0s-sdn-router" -version = "0.1.3" +version = "0.1.4" edition = "2021" description = "Router interface for atm0s-sdn" license = "MIT" @@ -11,5 +11,5 @@ mock = ["mockall"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -atm0s-sdn-identity = { path = "../identity", version = "0.1.2" } +atm0s-sdn-identity = { path = "../identity", version = "0.2.0" } mockall = { workspace = true, optional = true } diff --git a/packages/integration_tests/Cargo.toml b/packages/integration_tests/Cargo.toml index 9ffaab88..48fec3d5 100644 --- a/packages/integration_tests/Cargo.toml +++ b/packages/integration_tests/Cargo.toml @@ -9,8 +9,8 @@ publish = false [dependencies] [dev-dependencies] -atm0s-sdn = { path = "../runner", version = "0.1.4", features = ["all"] } -atm0s-sdn-transport-vnet = { path = "../transports/vnet", version = "0.1.4" } +atm0s-sdn = { path = "../runner", version = "0.1.5", features = ["all"] } +atm0s-sdn-transport-vnet = { path = "../transports/vnet", version = "0.2.0" } bytes = "1.5.0" log = "0.4.20" env_logger = "0.10.1" diff --git a/packages/network/CHANGELOG.md b/packages/network/CHANGELOG.md index 2f8cbc9b..448ae68e 100644 --- a/packages/network/CHANGELOG.md +++ b/packages/network/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.0](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-network-v0.2.2...atm0s-sdn-network-v0.3.0) - 2023-12-27 + +### Added +- secure with static key and noise protocol ([#101](https://github.com/8xFF/atm0s-sdn/pull/101)) +- node multi addrs ([#98](https://github.com/8xFF/atm0s-sdn/pull/98)) + ## [0.2.2](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-network-v0.2.1...atm0s-sdn-network-v0.2.2) - 2023-12-12 ### Other diff --git a/packages/network/Cargo.toml b/packages/network/Cargo.toml index 262b877a..dc23cbc9 100644 --- a/packages/network/Cargo.toml +++ b/packages/network/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "atm0s-sdn-network" -version = "0.2.2" +version = "0.3.0" edition = "2021" description = "Main network-plane of atm0s-sdn" license = "MIT" @@ -9,8 +9,8 @@ license = "MIT" [dependencies] atm0s-sdn-utils = { path = "../core/utils", version = "0.1.1" } -atm0s-sdn-identity = { path = "../core/identity", version = "0.1.2" } -atm0s-sdn-router = { path = "../core/router", version = "0.1.3" } +atm0s-sdn-identity = { path = "../core/identity", version = "0.2.0" } +atm0s-sdn-router = { path = "../core/router", version = "0.1.4" } async-std = { workspace = true } futures = "0.3" convert-enum = "0.1.0" @@ -26,4 +26,4 @@ sha1 = "0.10.6" [dev-dependencies] env_logger = { workspace = true } mockall = { workspace = true } -atm0s-sdn-router = { path = "../core/router", version = "0.1.3", features = ["mock"]} +atm0s-sdn-router = { path = "../core/router", version = "0.1.4", features = ["mock"]} diff --git a/packages/routers/layers_spread_router/CHANGELOG.md b/packages/routers/layers_spread_router/CHANGELOG.md index f2ba9cf4..8660bba1 100644 --- a/packages/routers/layers_spread_router/CHANGELOG.md +++ b/packages/routers/layers_spread_router/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.5](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-layers-spread-router-v0.1.4...atm0s-sdn-layers-spread-router-v0.1.5) - 2023-12-27 + +### Other +- updated the following local packages: atm0s-sdn-identity, atm0s-sdn-router + ## [0.1.4](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-layers-spread-router-v0.1.3...atm0s-sdn-layers-spread-router-v0.1.4) - 2023-12-12 ### Other diff --git a/packages/routers/layers_spread_router/Cargo.toml b/packages/routers/layers_spread_router/Cargo.toml index 32557624..545d700f 100644 --- a/packages/routers/layers_spread_router/Cargo.toml +++ b/packages/routers/layers_spread_router/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "atm0s-sdn-layers-spread-router" -version = "0.1.4" +version = "0.1.5" edition = "2021" description = "Spread router mechanism in 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 = "../../core/identity", version = "0.1.2" } -atm0s-sdn-router = { path = "../../core/router", version = "0.1.3" } +atm0s-sdn-identity = { path = "../../core/identity", version = "0.2.0" } +atm0s-sdn-router = { path = "../../core/router", version = "0.1.4" } atm0s-sdn-utils = { path = "../../core/utils", version = "0.1.1" } serde = { workspace = true } log = { workspace = true } diff --git a/packages/runner/CHANGELOG.md b/packages/runner/CHANGELOG.md index 3e507499..a38d69f5 100644 --- a/packages/runner/CHANGELOG.md +++ b/packages/runner/CHANGELOG.md @@ -6,6 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.5](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-v0.1.4...atm0s-sdn-v0.1.5) - 2023-12-27 + +### Added +- secure with static key and noise protocol ([#101](https://github.com/8xFF/atm0s-sdn/pull/101)) +- node multi addrs ([#98](https://github.com/8xFF/atm0s-sdn/pull/98)) + +### Other +- update Cargo.toml dependencies + ## [0.1.4](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-v0.1.3...atm0s-sdn-v0.1.4) - 2023-12-12 ### Other diff --git a/packages/runner/Cargo.toml b/packages/runner/Cargo.toml index 0e4ca278..0a36108f 100644 --- a/packages/runner/Cargo.toml +++ b/packages/runner/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "atm0s-sdn" -version = "0.1.4" +version = "0.1.5" edition = "2021" repository = "https://github.com/8xFF/atm0s-sdn" description = "Decentralized Ultra-Low-Latency Software Defined Network" @@ -12,19 +12,19 @@ license = "MIT" thiserror = { workspace = true } async-std = { workspace = true } -atm0s-sdn-identity = { path = "../core/identity", version = "0.1.2" } -atm0s-sdn-router = { path = "../core/router", version = "0.1.3" } +atm0s-sdn-identity = { path = "../core/identity", version = "0.2.0" } +atm0s-sdn-router = { path = "../core/router", version = "0.1.4" } atm0s-sdn-utils = { path = "../core/utils", version = "0.1.1" } -atm0s-sdn-network = { path = "../network", version = "0.2.2" } +atm0s-sdn-network = { path = "../network", version = "0.3.0" } atm0s-sdn-transport-compose = { path = "../transports/compose", version = "0.1.0", optional = true } -atm0s-sdn-transport-udp = { path = "../transports/udp", version = "0.1.3", optional = true } -atm0s-sdn-transport-tcp = { path = "../transports/tcp", version = "0.1.4", optional = true } -atm0s-sdn-layers-spread-router = { path = "../routers/layers_spread_router", version = "0.1.4", optional = true } -atm0s-sdn-layers-spread-router-sync = { path = "../services/layers_spread_router_sync", version = "0.1.4", optional = true } -atm0s-sdn-manual-discovery = { path = "../services/manual_discovery", version = "0.2.2", optional = true } -atm0s-sdn-key-value = { path = "../services/key_value", version = "0.1.5", optional = true } -atm0s-sdn-pub-sub = { path = "../services/pub_sub", version = "0.1.4", optional = true } -atm0s-sdn-rpc = { path = "../services/rpc", version = "0.1.2", optional = true } +atm0s-sdn-transport-udp = { path = "../transports/udp", version = "0.1.4", optional = true } +atm0s-sdn-transport-tcp = { path = "../transports/tcp", version = "0.1.5", optional = true } +atm0s-sdn-layers-spread-router = { path = "../routers/layers_spread_router", version = "0.1.5", optional = true } +atm0s-sdn-layers-spread-router-sync = { path = "../services/layers_spread_router_sync", version = "0.1.5", optional = true } +atm0s-sdn-manual-discovery = { path = "../services/manual_discovery", version = "0.2.3", optional = true } +atm0s-sdn-key-value = { path = "../services/key_value", version = "0.1.6", optional = true } +atm0s-sdn-pub-sub = { path = "../services/pub_sub", version = "0.1.5", optional = true } +atm0s-sdn-rpc = { path = "../services/rpc", version = "0.1.3", optional = true } async-trait = { workspace = true } futures-util = "0.3" diff --git a/packages/services/dht_discovery/CHANGELOG.md b/packages/services/dht_discovery/CHANGELOG.md index 4b398543..5e53ddf1 100644 --- a/packages/services/dht_discovery/CHANGELOG.md +++ b/packages/services/dht_discovery/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.5](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-dht-discovery-v0.1.4...atm0s-sdn-dht-discovery-v0.1.5) - 2023-12-27 + +### Added +- node multi addrs ([#98](https://github.com/8xFF/atm0s-sdn/pull/98)) + ## [0.1.4](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-dht-discovery-v0.1.3...atm0s-sdn-dht-discovery-v0.1.4) - 2023-12-12 ### Other diff --git a/packages/services/dht_discovery/Cargo.toml b/packages/services/dht_discovery/Cargo.toml index 3ac989ce..3b69d664 100644 --- a/packages/services/dht_discovery/Cargo.toml +++ b/packages/services/dht_discovery/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "atm0s-sdn-dht-discovery" -version = "0.1.4" +version = "0.1.5" edition = "2021" description = "DHT discovery for atm0s-sdn" license = "MIT" @@ -8,10 +8,10 @@ license = "MIT" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -atm0s-sdn-identity = { path = "../../core/identity", version = "0.1.2" } -atm0s-sdn-router = { path = "../../core/router", version = "0.1.3" } +atm0s-sdn-identity = { path = "../../core/identity", version = "0.2.0" } +atm0s-sdn-router = { path = "../../core/router", version = "0.1.4" } atm0s-sdn-utils = { path = "../../core/utils", version = "0.1.1" } -atm0s-sdn-network = { path = "../../network", version = "0.2.2" } +atm0s-sdn-network = { path = "../../network", version = "0.3.0" } async-trait = { workspace = true } bincode = { workspace = true } thiserror = { workspace = true } @@ -23,4 +23,4 @@ serde = { workspace = true } rand = "0.8" async-std = { workspace = true } env_logger = { workspace = true } -atm0s-sdn-transport-vnet = { path = "../../transports/vnet", version = "0.1.4" } +atm0s-sdn-transport-vnet = { path = "../../transports/vnet", version = "0.2.0" } diff --git a/packages/services/key_value/CHANGELOG.md b/packages/services/key_value/CHANGELOG.md index 267f6ed3..118fda54 100644 --- a/packages/services/key_value/CHANGELOG.md +++ b/packages/services/key_value/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.6](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-key-value-v0.1.5...atm0s-sdn-key-value-v0.1.6) - 2023-12-27 + +### Added +- node multi addrs ([#98](https://github.com/8xFF/atm0s-sdn/pull/98)) + ## [0.1.5](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-key-value-v0.1.4...atm0s-sdn-key-value-v0.1.5) - 2023-12-12 ### Other diff --git a/packages/services/key_value/Cargo.toml b/packages/services/key_value/Cargo.toml index 8794f078..897124f1 100644 --- a/packages/services/key_value/Cargo.toml +++ b/packages/services/key_value/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "atm0s-sdn-key-value" -version = "0.1.5" +version = "0.1.6" edition = "2021" description = "KeyValue service for atm0s-sdn" license = "MIT" @@ -8,10 +8,10 @@ license = "MIT" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -atm0s-sdn-identity = { path = "../../core/identity", version = "0.1.2" } -atm0s-sdn-router = { path = "../../core/router", version = "0.1.3" } +atm0s-sdn-identity = { path = "../../core/identity", version = "0.2.0" } +atm0s-sdn-router = { path = "../../core/router", version = "0.1.4" } atm0s-sdn-utils = { path = "../../core/utils", version = "0.1.1" } -atm0s-sdn-network = { path = "../../network", version = "0.2.2" } +atm0s-sdn-network = { path = "../../network", version = "0.3.0" } thiserror = { workspace = true } log = { workspace = true } serde = { workspace = true } diff --git a/packages/services/layers_spread_router_sync/CHANGELOG.md b/packages/services/layers_spread_router_sync/CHANGELOG.md index 3915254c..8ae71c9c 100644 --- a/packages/services/layers_spread_router_sync/CHANGELOG.md +++ b/packages/services/layers_spread_router_sync/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.5](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-layers-spread-router-sync-v0.1.4...atm0s-sdn-layers-spread-router-sync-v0.1.5) - 2023-12-27 + +### Added +- node multi addrs ([#98](https://github.com/8xFF/atm0s-sdn/pull/98)) + ## [0.1.4](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-layers-spread-router-sync-v0.1.3...atm0s-sdn-layers-spread-router-sync-v0.1.4) - 2023-12-12 ### Other diff --git a/packages/services/layers_spread_router_sync/Cargo.toml b/packages/services/layers_spread_router_sync/Cargo.toml index a5fde92c..e8a93840 100644 --- a/packages/services/layers_spread_router_sync/Cargo.toml +++ b/packages/services/layers_spread_router_sync/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "atm0s-sdn-layers-spread-router-sync" -version = "0.1.4" +version = "0.1.5" edition = "2021" description = "Spread router sync service in atm0s-sdn" license = "MIT" @@ -8,11 +8,11 @@ license = "MIT" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -atm0s-sdn-identity = { path = "../../core/identity", version = "0.1.2" } -atm0s-sdn-router = { path = "../../core/router", version = "0.1.3" } +atm0s-sdn-identity = { path = "../../core/identity", version = "0.2.0" } +atm0s-sdn-router = { path = "../../core/router", version = "0.1.4" } atm0s-sdn-utils = { path = "../../core/utils", version = "0.1.1" } -atm0s-sdn-network = { path = "../../network", version = "0.2.2" } -atm0s-sdn-layers-spread-router = { path = "../../routers/layers_spread_router", version = "0.1.4" } +atm0s-sdn-network = { path = "../../network", version = "0.3.0" } +atm0s-sdn-layers-spread-router = { path = "../../routers/layers_spread_router", version = "0.1.5" } async-trait = { workspace = true } bincode = { workspace = true } thiserror = { workspace = true } diff --git a/packages/services/manual_discovery/CHANGELOG.md b/packages/services/manual_discovery/CHANGELOG.md index 3074ee94..37dd1b3d 100644 --- a/packages/services/manual_discovery/CHANGELOG.md +++ b/packages/services/manual_discovery/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.3](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-manual-discovery-v0.2.2...atm0s-sdn-manual-discovery-v0.2.3) - 2023-12-27 + +### Added +- node multi addrs ([#98](https://github.com/8xFF/atm0s-sdn/pull/98)) + ## [0.2.2](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-manual-discovery-v0.2.1...atm0s-sdn-manual-discovery-v0.2.2) - 2023-12-12 ### Other diff --git a/packages/services/manual_discovery/Cargo.toml b/packages/services/manual_discovery/Cargo.toml index 7344bd2c..80e7b5df 100644 --- a/packages/services/manual_discovery/Cargo.toml +++ b/packages/services/manual_discovery/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "atm0s-sdn-manual-discovery" -version = "0.2.2" +version = "0.2.3" edition = "2021" description = "Manual discovery service in atm0s-sdn" license = "MIT" @@ -8,11 +8,11 @@ license = "MIT" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -atm0s-sdn-identity = { path = "../../core/identity", version = "0.1.2" } -atm0s-sdn-router = { path = "../../core/router", version = "0.1.3" } +atm0s-sdn-identity = { path = "../../core/identity", version = "0.2.0" } +atm0s-sdn-router = { path = "../../core/router", version = "0.1.4" } atm0s-sdn-utils = { path = "../../core/utils", version = "0.1.1" } -atm0s-sdn-network = { path = "../../network", version = "0.2.2" } -atm0s-sdn-key-value = { path = "../../services/key_value", version = "0.1.5" } +atm0s-sdn-network = { path = "../../network", version = "0.3.0" } +atm0s-sdn-key-value = { path = "../../services/key_value", version = "0.1.6" } async-trait = { workspace = true } thiserror = { workspace = true } log = { workspace = true } diff --git a/packages/services/pub_sub/CHANGELOG.md b/packages/services/pub_sub/CHANGELOG.md index 16c03524..a2fd7695 100644 --- a/packages/services/pub_sub/CHANGELOG.md +++ b/packages/services/pub_sub/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.5](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-pub-sub-v0.1.4...atm0s-sdn-pub-sub-v0.1.5) - 2023-12-27 + +### Added +- node multi addrs ([#98](https://github.com/8xFF/atm0s-sdn/pull/98)) + ## [0.1.4](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-pub-sub-v0.1.3...atm0s-sdn-pub-sub-v0.1.4) - 2023-12-12 ### Other diff --git a/packages/services/pub_sub/Cargo.toml b/packages/services/pub_sub/Cargo.toml index 935b6d5a..a1d8a2d2 100644 --- a/packages/services/pub_sub/Cargo.toml +++ b/packages/services/pub_sub/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "atm0s-sdn-pub-sub" -version = "0.1.4" +version = "0.1.5" edition = "2021" description = "Pub/Sub service in atm0s-sdn" license = "MIT" @@ -8,11 +8,11 @@ license = "MIT" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -atm0s-sdn-identity = { path = "../../core/identity", version = "0.1.2" } -atm0s-sdn-router = { path = "../../core/router", version = "0.1.3" } +atm0s-sdn-identity = { path = "../../core/identity", version = "0.2.0" } +atm0s-sdn-router = { path = "../../core/router", version = "0.1.4" } atm0s-sdn-utils = { path = "../../core/utils", version = "0.1.1" } -atm0s-sdn-network = { path = "../../network", version = "0.2.2" } -atm0s-sdn-key-value = { path = "../../services/key_value", version = "0.1.5" } +atm0s-sdn-network = { path = "../../network", version = "0.3.0" } +atm0s-sdn-key-value = { path = "../../services/key_value", version = "0.1.6" } log = { workspace = true } async-trait = { workspace = true } async-std = { workspace = true } diff --git a/packages/services/rpc/CHANGELOG.md b/packages/services/rpc/CHANGELOG.md index fc6b8c6c..5d50ffb6 100644 --- a/packages/services/rpc/CHANGELOG.md +++ b/packages/services/rpc/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.3](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-rpc-v0.1.2...atm0s-sdn-rpc-v0.1.3) - 2023-12-27 + +### Added +- node multi addrs ([#98](https://github.com/8xFF/atm0s-sdn/pull/98)) + ## [0.1.2](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-rpc-v0.1.1...atm0s-sdn-rpc-v0.1.2) - 2023-12-12 ### Fixed diff --git a/packages/services/rpc/Cargo.toml b/packages/services/rpc/Cargo.toml index 429a50ea..9da35183 100644 --- a/packages/services/rpc/Cargo.toml +++ b/packages/services/rpc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "atm0s-sdn-rpc" -version = "0.1.2" +version = "0.1.3" edition = "2021" description = "RPC service in atm0s-sdn" license = "MIT" @@ -8,10 +8,10 @@ license = "MIT" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -atm0s-sdn-identity = { path = "../../core/identity", version = "0.1.2" } -atm0s-sdn-router = { path = "../../core/router", version = "0.1.3" } +atm0s-sdn-identity = { path = "../../core/identity", version = "0.2.0" } +atm0s-sdn-router = { path = "../../core/router", version = "0.1.4" } atm0s-sdn-utils = { path = "../../core/utils", version = "0.1.1" } -atm0s-sdn-network = { path = "../../network", version = "0.2.2" } +atm0s-sdn-network = { path = "../../network", version = "0.3.0" } parking_lot = { workspace = true } async-std = { workspace = true } serde = { workspace = true } diff --git a/packages/services/tun_tap/CHANGELOG.md b/packages/services/tun_tap/CHANGELOG.md index 990d9b2b..e8ca28a8 100644 --- a/packages/services/tun_tap/CHANGELOG.md +++ b/packages/services/tun_tap/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.5](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-tun-tap-v0.1.4...atm0s-sdn-tun-tap-v0.1.5) - 2023-12-27 + +### Added +- node multi addrs ([#98](https://github.com/8xFF/atm0s-sdn/pull/98)) + ## [0.1.4](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-tun-tap-v0.1.3...atm0s-sdn-tun-tap-v0.1.4) - 2023-12-12 ### Other diff --git a/packages/services/tun_tap/Cargo.toml b/packages/services/tun_tap/Cargo.toml index 98882b57..b5758d42 100644 --- a/packages/services/tun_tap/Cargo.toml +++ b/packages/services/tun_tap/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "atm0s-sdn-tun-tap" -version = "0.1.4" +version = "0.1.5" edition = "2021" description = "Tun/Tap service in atm0s-sdn" license = "MIT" @@ -8,10 +8,10 @@ license = "MIT" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -atm0s-sdn-identity = { path = "../../core/identity", version = "0.1.2" } -atm0s-sdn-router = { path = "../../core/router", version = "0.1.3" } +atm0s-sdn-identity = { path = "../../core/identity", version = "0.2.0" } +atm0s-sdn-router = { path = "../../core/router", version = "0.1.4" } atm0s-sdn-utils = { path = "../../core/utils", version = "0.1.1" } -atm0s-sdn-network = { path = "../../network", version = "0.2.2" } +atm0s-sdn-network = { path = "../../network", version = "0.3.0" } log = { workspace = true } async-trait = { workspace = true } async-std = { workspace = true } diff --git a/packages/transports/compose/Cargo.toml b/packages/transports/compose/Cargo.toml index cdb5a572..94fdcd6c 100644 --- a/packages/transports/compose/Cargo.toml +++ b/packages/transports/compose/Cargo.toml @@ -7,4 +7,4 @@ license = "MIT" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html -[dependencies] \ No newline at end of file +[dependencies] diff --git a/packages/transports/tcp/CHANGELOG.md b/packages/transports/tcp/CHANGELOG.md index 2c6c31b4..577cfe72 100644 --- a/packages/transports/tcp/CHANGELOG.md +++ b/packages/transports/tcp/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.5](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-transport-tcp-v0.1.4...atm0s-sdn-transport-tcp-v0.1.5) - 2023-12-27 + +### Added +- secure with static key and noise protocol ([#101](https://github.com/8xFF/atm0s-sdn/pull/101)) +- node multi addrs ([#98](https://github.com/8xFF/atm0s-sdn/pull/98)) + ## [0.1.4](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-transport-tcp-v0.1.3...atm0s-sdn-transport-tcp-v0.1.4) - 2023-12-12 ### Other diff --git a/packages/transports/tcp/Cargo.toml b/packages/transports/tcp/Cargo.toml index 3c5e4c61..d1622daf 100644 --- a/packages/transports/tcp/Cargo.toml +++ b/packages/transports/tcp/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "atm0s-sdn-transport-tcp" -version = "0.1.4" +version = "0.1.5" edition = "2021" description = "TCP Transport in 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-network = { path = "../../network", version = "0.2.2" } -atm0s-sdn-identity = { path = "../../core/identity", version = "0.1.2" } +atm0s-sdn-network = { path = "../../network", version = "0.3.0" } +atm0s-sdn-identity = { path = "../../core/identity", version = "0.2.0" } atm0s-sdn-utils = { path = "../../core/utils", version = "0.1.1" } async-trait = { workspace = true } parking_lot = { workspace = true } @@ -20,4 +20,4 @@ log = { workspace = true } futures-util = "0.3" async-bincode = { version = "0.7.2", features = ["futures"], default-features = false } local-ip-address = "0.5.6" -snow = "0.9.4" \ No newline at end of file +snow = "0.9.4" diff --git a/packages/transports/udp/CHANGELOG.md b/packages/transports/udp/CHANGELOG.md index e28163c3..9ae5a811 100644 --- a/packages/transports/udp/CHANGELOG.md +++ b/packages/transports/udp/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.4](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-transport-udp-v0.1.3...atm0s-sdn-transport-udp-v0.1.4) - 2023-12-27 + +### Added +- secure with static key and noise protocol ([#101](https://github.com/8xFF/atm0s-sdn/pull/101)) +- node multi addrs ([#98](https://github.com/8xFF/atm0s-sdn/pull/98)) + ## [0.1.3](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-transport-udp-v0.1.2...atm0s-sdn-transport-udp-v0.1.3) - 2023-12-12 ### Other diff --git a/packages/transports/udp/Cargo.toml b/packages/transports/udp/Cargo.toml index 8ddd32b8..1ae14182 100644 --- a/packages/transports/udp/Cargo.toml +++ b/packages/transports/udp/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "atm0s-sdn-transport-udp" -version = "0.1.3" +version = "0.1.4" edition = "2021" description = "UDP Transport in 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-network = { path = "../../network", version = "0.2.2" } -atm0s-sdn-identity = { path = "../../core/identity", version = "0.1.2" } +atm0s-sdn-network = { path = "../../network", version = "0.3.0" } +atm0s-sdn-identity = { path = "../../core/identity", version = "0.2.0" } atm0s-sdn-utils = { path = "../../core/utils", version = "0.1.1" } async-trait = { workspace = true } parking_lot = { workspace = true } @@ -21,4 +21,4 @@ futures-util = "0.3" async-notify = { workspace = true } socket2 = "0.5.5" local-ip-address = "0.5.6" -snow = "0.9.4" \ No newline at end of file +snow = "0.9.4" diff --git a/packages/transports/vnet/CHANGELOG.md b/packages/transports/vnet/CHANGELOG.md index 55b44e46..c78dde44 100644 --- a/packages/transports/vnet/CHANGELOG.md +++ b/packages/transports/vnet/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.0](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-transport-vnet-v0.1.4...atm0s-sdn-transport-vnet-v0.2.0) - 2023-12-27 + +### Added +- node multi addrs ([#98](https://github.com/8xFF/atm0s-sdn/pull/98)) + ## [0.1.4](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-transport-vnet-v0.1.3...atm0s-sdn-transport-vnet-v0.1.4) - 2023-12-12 ### Other diff --git a/packages/transports/vnet/Cargo.toml b/packages/transports/vnet/Cargo.toml index 5d67a0e9..1eae21c0 100644 --- a/packages/transports/vnet/Cargo.toml +++ b/packages/transports/vnet/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "atm0s-sdn-transport-vnet" -version = "0.1.4" +version = "0.2.0" edition = "2021" description = "Vitual Network Transport in atm0s-sdn" license = "MIT" @@ -8,14 +8,14 @@ license = "MIT" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -atm0s-sdn-network = { path = "../../network", version = "0.2.2" } -atm0s-sdn-identity = { path = "../../core/identity", version = "0.1.2" } +atm0s-sdn-network = { path = "../../network", version = "0.3.0" } +atm0s-sdn-identity = { path = "../../core/identity", version = "0.2.0" } atm0s-sdn-utils = { path = "../../core/utils", version = "0.1.1" } async-trait = { workspace = true } parking_lot = { workspace = true } async-std = { workspace = true } [dev-dependencies] -atm0s-sdn-router = { path = "../../core/router", version = "0.1.3" } +atm0s-sdn-router = { path = "../../core/router", version = "0.1.4" } bincode = { workspace = true } serde = { workspace = true }