From ba156877df723298f6b7a26fdedf412fde18e778 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 24 Jan 2024 18:38:59 +0700 Subject: [PATCH] chore: release (#119) --- examples/Cargo.toml | 6 ++--- packages/apps/redis/CHANGELOG.md | 5 ++++ packages/apps/redis/Cargo.toml | 6 ++--- packages/integration_tests/Cargo.toml | 4 ++-- packages/network/CHANGELOG.md | 5 ++++ packages/network/Cargo.toml | 2 +- .../routers/layers_spread_router/CHANGELOG.md | 5 ++++ .../routers/layers_spread_router/Cargo.toml | 2 +- packages/runner/CHANGELOG.md | 9 +++++++ packages/runner/Cargo.toml | 24 +++++++++---------- packages/services/dht_discovery/CHANGELOG.md | 5 ++++ packages/services/dht_discovery/Cargo.toml | 6 ++--- packages/services/key_value/CHANGELOG.md | 5 ++++ packages/services/key_value/Cargo.toml | 4 ++-- .../layers_spread_router_sync/CHANGELOG.md | 5 ++++ .../layers_spread_router_sync/Cargo.toml | 6 ++--- .../services/manual_discovery/CHANGELOG.md | 5 ++++ packages/services/manual_discovery/Cargo.toml | 6 ++--- packages/services/node_alias/CHANGELOG.md | 5 ++++ packages/services/node_alias/Cargo.toml | 6 ++--- packages/services/pub_sub/CHANGELOG.md | 5 ++++ packages/services/pub_sub/Cargo.toml | 6 ++--- packages/services/rpc/CHANGELOG.md | 5 ++++ packages/services/rpc/Cargo.toml | 4 ++-- packages/services/tun_tap/CHANGELOG.md | 5 ++++ packages/services/tun_tap/Cargo.toml | 4 ++-- packages/services/virtual_socket/CHANGELOG.md | 12 ++++++++++ packages/services/virtual_socket/Cargo.toml | 4 ++-- packages/transports/tcp/CHANGELOG.md | 6 +++++ packages/transports/tcp/Cargo.toml | 4 ++-- packages/transports/udp/CHANGELOG.md | 6 +++++ packages/transports/udp/Cargo.toml | 4 ++-- packages/transports/vnet/CHANGELOG.md | 5 ++++ packages/transports/vnet/Cargo.toml | 4 ++-- 34 files changed, 144 insertions(+), 51 deletions(-) create mode 100644 packages/services/virtual_socket/CHANGELOG.md diff --git a/examples/Cargo.toml b/examples/Cargo.toml index ac921f3a..3706dc8e 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.7" } -atm0s-sdn-tun-tap = { path = "../packages/services/tun_tap", version = "0.1.5" } -atm0s-sdn-redis-server = { path = "../packages/apps/redis", version = "0.1.5" } +atm0s-sdn = { path = "../packages/runner", features = ["all"], version = "0.1.8" } +atm0s-sdn-tun-tap = { path = "../packages/services/tun_tap", version = "0.1.6" } +atm0s-sdn-redis-server = { path = "../packages/apps/redis", version = "0.1.6" } 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 00772c43..ddf7015d 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.6](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-redis-server-v0.1.5...atm0s-sdn-redis-server-v0.1.6) - 2024-01-24 + +### Other +- updated the following local packages: atm0s-sdn-key-value, atm0s-sdn-network + ## [0.1.5](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-redis-server-v0.1.4...atm0s-sdn-redis-server-v0.1.5) - 2023-12-28 ### Other diff --git a/packages/apps/redis/Cargo.toml b/packages/apps/redis/Cargo.toml index 70a56f9c..a32e3ab5 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.5" +version = "0.1.6" edition = "2021" description = "A simple redis server for atm0s-sdn" license = "MIT" @@ -11,8 +11,8 @@ license = "MIT" 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.3.0" } -atm0s-sdn-key-value = { path = "../../services/key_value", version = "0.1.7" } +atm0s-sdn-network = { path = "../../network", version = "0.3.1" } +atm0s-sdn-key-value = { path = "../../services/key_value", version = "0.1.8" } log = { workspace = true } serde = { workspace = true } async-std = { workspace = true } diff --git a/packages/integration_tests/Cargo.toml b/packages/integration_tests/Cargo.toml index f06f9f94..48506f18 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.7", features = ["all"] } -atm0s-sdn-transport-vnet = { path = "../transports/vnet", version = "0.2.0" } +atm0s-sdn = { path = "../runner", version = "0.1.8", features = ["all"] } +atm0s-sdn-transport-vnet = { path = "../transports/vnet", version = "0.2.1" } bytes = "1.5.0" log = "0.4.20" env_logger = "0.11.0" diff --git a/packages/network/CHANGELOG.md b/packages/network/CHANGELOG.md index 448ae68e..ec22d3b1 100644 --- a/packages/network/CHANGELOG.md +++ b/packages/network/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-network-v0.3.0...atm0s-sdn-network-v0.3.1) - 2024-01-24 + +### Other +- update Cargo.toml dependencies + ## [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 diff --git a/packages/network/Cargo.toml b/packages/network/Cargo.toml index dc23cbc9..86eaa1d8 100644 --- a/packages/network/Cargo.toml +++ b/packages/network/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "atm0s-sdn-network" -version = "0.3.0" +version = "0.3.1" edition = "2021" description = "Main network-plane of atm0s-sdn" license = "MIT" diff --git a/packages/routers/layers_spread_router/CHANGELOG.md b/packages/routers/layers_spread_router/CHANGELOG.md index 8660bba1..ec9d1c88 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.6](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-layers-spread-router-v0.1.5...atm0s-sdn-layers-spread-router-v0.1.6) - 2024-01-24 + +### Other +- update Cargo.toml dependencies + ## [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 diff --git a/packages/routers/layers_spread_router/Cargo.toml b/packages/routers/layers_spread_router/Cargo.toml index 545d700f..e59cea4b 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.5" +version = "0.1.6" edition = "2021" description = "Spread router mechanism in atm0s-sdn" license = "MIT" diff --git a/packages/runner/CHANGELOG.md b/packages/runner/CHANGELOG.md index ab56bd16..13d8ce61 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.8](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-v0.1.7...atm0s-sdn-v0.1.8) - 2024-01-24 + +### Fixed +- *(deps)* update rust crate snow to 0.9.5 ([#120](https://github.com/8xFF/atm0s-sdn/pull/120)) +- *(deps)* update rust crate local-ip-address to 0.5.7 ([#117](https://github.com/8xFF/atm0s-sdn/pull/117)) + +### Other +- update Cargo.toml dependencies + ## [0.1.7](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-v0.1.6...atm0s-sdn-v0.1.7) - 2024-01-09 ### Added diff --git a/packages/runner/Cargo.toml b/packages/runner/Cargo.toml index f9ef2cd4..baa50432 100644 --- a/packages/runner/Cargo.toml +++ b/packages/runner/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "atm0s-sdn" -version = "0.1.7" +version = "0.1.8" edition = "2021" repository = "https://github.com/8xFF/atm0s-sdn" description = "Decentralized Ultra-Low-Latency Software Defined Network" @@ -15,18 +15,18 @@ async-std = { workspace = true } 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.3.0" } +atm0s-sdn-network = { path = "../network", version = "0.3.1" } atm0s-sdn-transport-compose = { path = "../transports/compose", version = "0.1.1", optional = true } -atm0s-sdn-transport-udp = { path = "../transports/udp", version = "0.1.5", 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.4", optional = true } -atm0s-sdn-key-value = { path = "../services/key_value", version = "0.1.7", optional = true } -atm0s-sdn-pub-sub = { path = "../services/pub_sub", version = "0.1.6", optional = true } -atm0s-sdn-rpc = { path = "../services/rpc", version = "0.1.3", optional = true } -atm0s-sdn-virtual-socket = { path = "../services/virtual_socket", version = "0.1.0", optional = true } -atm0s-sdn-node-alias = { path = "../services/node_alias", version = "0.1.1", optional = true } +atm0s-sdn-transport-udp = { path = "../transports/udp", version = "0.1.6", optional = true } +atm0s-sdn-transport-tcp = { path = "../transports/tcp", version = "0.1.6", optional = true } +atm0s-sdn-layers-spread-router = { path = "../routers/layers_spread_router", version = "0.1.6", optional = true } +atm0s-sdn-layers-spread-router-sync = { path = "../services/layers_spread_router_sync", version = "0.1.6", optional = true } +atm0s-sdn-manual-discovery = { path = "../services/manual_discovery", version = "0.2.5", optional = true } +atm0s-sdn-key-value = { path = "../services/key_value", version = "0.1.8", optional = true } +atm0s-sdn-pub-sub = { path = "../services/pub_sub", version = "0.1.7", optional = true } +atm0s-sdn-rpc = { path = "../services/rpc", version = "0.1.4", optional = true } +atm0s-sdn-virtual-socket = { path = "../services/virtual_socket", version = "0.1.1", optional = true } +atm0s-sdn-node-alias = { path = "../services/node_alias", version = "0.1.2", 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 5e53ddf1..19badf62 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.6](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-dht-discovery-v0.1.5...atm0s-sdn-dht-discovery-v0.1.6) - 2024-01-24 + +### Other +- update Cargo.toml dependencies + ## [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 diff --git a/packages/services/dht_discovery/Cargo.toml b/packages/services/dht_discovery/Cargo.toml index 3b69d664..59434430 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.5" +version = "0.1.6" edition = "2021" description = "DHT discovery for atm0s-sdn" license = "MIT" @@ -11,7 +11,7 @@ license = "MIT" 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.3.0" } +atm0s-sdn-network = { path = "../../network", version = "0.3.1" } 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.2.0" } +atm0s-sdn-transport-vnet = { path = "../../transports/vnet", version = "0.2.1" } diff --git a/packages/services/key_value/CHANGELOG.md b/packages/services/key_value/CHANGELOG.md index d3e2f450..768f9550 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.8](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-key-value-v0.1.7...atm0s-sdn-key-value-v0.1.8) - 2024-01-24 + +### Other +- update Cargo.toml dependencies + ## [0.1.7](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-key-value-v0.1.6...atm0s-sdn-key-value-v0.1.7) - 2023-12-28 ### Fixed diff --git a/packages/services/key_value/Cargo.toml b/packages/services/key_value/Cargo.toml index 75204319..de980b57 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.7" +version = "0.1.8" edition = "2021" description = "KeyValue service for atm0s-sdn" license = "MIT" @@ -11,7 +11,7 @@ license = "MIT" 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.3.0" } +atm0s-sdn-network = { path = "../../network", version = "0.3.1" } 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 8ae71c9c..3b0a07f5 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.6](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-layers-spread-router-sync-v0.1.5...atm0s-sdn-layers-spread-router-sync-v0.1.6) - 2024-01-24 + +### Other +- updated the following local packages: atm0s-sdn-network, atm0s-sdn-layers-spread-router + ## [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 diff --git a/packages/services/layers_spread_router_sync/Cargo.toml b/packages/services/layers_spread_router_sync/Cargo.toml index e8a93840..5606e6c1 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.5" +version = "0.1.6" edition = "2021" description = "Spread router sync service in atm0s-sdn" license = "MIT" @@ -11,8 +11,8 @@ license = "MIT" 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.3.0" } -atm0s-sdn-layers-spread-router = { path = "../../routers/layers_spread_router", version = "0.1.5" } +atm0s-sdn-network = { path = "../../network", version = "0.3.1" } +atm0s-sdn-layers-spread-router = { path = "../../routers/layers_spread_router", version = "0.1.6" } 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 825fbdd8..5b551af8 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.5](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-manual-discovery-v0.2.4...atm0s-sdn-manual-discovery-v0.2.5) - 2024-01-24 + +### Other +- updated the following local packages: atm0s-sdn-key-value, atm0s-sdn-network + ## [0.2.4](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-manual-discovery-v0.2.3...atm0s-sdn-manual-discovery-v0.2.4) - 2023-12-28 ### Other diff --git a/packages/services/manual_discovery/Cargo.toml b/packages/services/manual_discovery/Cargo.toml index 5ae4cff1..613cef47 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.4" +version = "0.2.5" edition = "2021" description = "Manual discovery service in atm0s-sdn" license = "MIT" @@ -11,8 +11,8 @@ license = "MIT" 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.3.0" } -atm0s-sdn-key-value = { path = "../../services/key_value", version = "0.1.7" } +atm0s-sdn-network = { path = "../../network", version = "0.3.1" } +atm0s-sdn-key-value = { path = "../../services/key_value", version = "0.1.8" } async-trait = { workspace = true } thiserror = { workspace = true } log = { workspace = true } diff --git a/packages/services/node_alias/CHANGELOG.md b/packages/services/node_alias/CHANGELOG.md index 1e644332..d08758fa 100644 --- a/packages/services/node_alias/CHANGELOG.md +++ b/packages/services/node_alias/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.2](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-node-alias-v0.1.1...atm0s-sdn-node-alias-v0.1.2) - 2024-01-24 + +### Other +- updated the following local packages: atm0s-sdn-network + ## [0.1.1](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-node-alias-v0.1.0...atm0s-sdn-node-alias-v0.1.1) - 2024-01-09 ### Fixed diff --git a/packages/services/node_alias/Cargo.toml b/packages/services/node_alias/Cargo.toml index f28a2314..c1f8b65e 100644 --- a/packages/services/node_alias/Cargo.toml +++ b/packages/services/node_alias/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "atm0s-sdn-node-alias" -version = "0.1.1" +version = "0.1.2" edition = "2021" description = "Node alias service in atm0s-sdn" license = "MIT" @@ -11,8 +11,8 @@ license = "MIT" 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.3.0" } -atm0s-sdn-pub-sub = { path = "../pub_sub", version = "0.1.6" } +atm0s-sdn-network = { path = "../../network", version = "0.3.1" } +atm0s-sdn-pub-sub = { path = "../pub_sub", version = "0.1.7" } log = { workspace = true } parking_lot = { workspace = true } serde = { workspace = true } diff --git a/packages/services/pub_sub/CHANGELOG.md b/packages/services/pub_sub/CHANGELOG.md index 65286342..98cd7025 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.7](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-pub-sub-v0.1.6...atm0s-sdn-pub-sub-v0.1.7) - 2024-01-24 + +### Other +- updated the following local packages: atm0s-sdn-key-value, atm0s-sdn-network + ## [0.1.6](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-pub-sub-v0.1.5...atm0s-sdn-pub-sub-v0.1.6) - 2023-12-28 ### Other diff --git a/packages/services/pub_sub/Cargo.toml b/packages/services/pub_sub/Cargo.toml index 659669ca..96f05c1e 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.6" +version = "0.1.7" edition = "2021" description = "Pub/Sub service in atm0s-sdn" license = "MIT" @@ -11,8 +11,8 @@ license = "MIT" 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.3.0" } -atm0s-sdn-key-value = { path = "../../services/key_value", version = "0.1.7" } +atm0s-sdn-network = { path = "../../network", version = "0.3.1" } +atm0s-sdn-key-value = { path = "../../services/key_value", version = "0.1.8" } 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 5d50ffb6..4d97c6e0 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.4](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-rpc-v0.1.3...atm0s-sdn-rpc-v0.1.4) - 2024-01-24 + +### Fixed +- rpc timeout if more than 65536 in timeout cycle ([#118](https://github.com/8xFF/atm0s-sdn/pull/118)) + ## [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 diff --git a/packages/services/rpc/Cargo.toml b/packages/services/rpc/Cargo.toml index 9da35183..96f4e076 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.3" +version = "0.1.4" edition = "2021" description = "RPC service in atm0s-sdn" license = "MIT" @@ -11,7 +11,7 @@ license = "MIT" 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.3.0" } +atm0s-sdn-network = { path = "../../network", version = "0.3.1" } 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 e8ca28a8..7876acc3 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.6](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-tun-tap-v0.1.5...atm0s-sdn-tun-tap-v0.1.6) - 2024-01-24 + +### Other +- updated the following local packages: atm0s-sdn-network + ## [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 diff --git a/packages/services/tun_tap/Cargo.toml b/packages/services/tun_tap/Cargo.toml index b5758d42..5d8242bf 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.5" +version = "0.1.6" edition = "2021" description = "Tun/Tap service in atm0s-sdn" license = "MIT" @@ -11,7 +11,7 @@ license = "MIT" 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.3.0" } +atm0s-sdn-network = { path = "../../network", version = "0.3.1" } log = { workspace = true } async-trait = { workspace = true } async-std = { workspace = true } diff --git a/packages/services/virtual_socket/CHANGELOG.md b/packages/services/virtual_socket/CHANGELOG.md new file mode 100644 index 00000000..22961292 --- /dev/null +++ b/packages/services/virtual_socket/CHANGELOG.md @@ -0,0 +1,12 @@ +# Changelog +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [0.1.1](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-virtual-socket-v0.1.0...atm0s-sdn-virtual-socket-v0.1.1) - 2024-01-24 + +### Other +- updated the following local packages: atm0s-sdn-network diff --git a/packages/services/virtual_socket/Cargo.toml b/packages/services/virtual_socket/Cargo.toml index da182ce8..445f9889 100644 --- a/packages/services/virtual_socket/Cargo.toml +++ b/packages/services/virtual_socket/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "atm0s-sdn-virtual-socket" -version = "0.1.0" +version = "0.1.1" edition = "2021" description = "Virtual Socket service in atm0s-sdn" license = "MIT" @@ -11,7 +11,7 @@ license = "MIT" 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.3.0" } +atm0s-sdn-network = { path = "../../network", version = "0.3.1" } log = { workspace = true } futures = "0.3" async-trait = { workspace = true } diff --git a/packages/transports/tcp/CHANGELOG.md b/packages/transports/tcp/CHANGELOG.md index 577cfe72..b03b6ad1 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.6](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-transport-tcp-v0.1.5...atm0s-sdn-transport-tcp-v0.1.6) - 2024-01-24 + +### Fixed +- *(deps)* update rust crate snow to 0.9.5 ([#120](https://github.com/8xFF/atm0s-sdn/pull/120)) +- *(deps)* update rust crate local-ip-address to 0.5.7 ([#117](https://github.com/8xFF/atm0s-sdn/pull/117)) + ## [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 diff --git a/packages/transports/tcp/Cargo.toml b/packages/transports/tcp/Cargo.toml index 21acb8bc..a46a2cd2 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.5" +version = "0.1.6" edition = "2021" description = "TCP Transport in atm0s-sdn" license = "MIT" @@ -8,7 +8,7 @@ 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.3.0" } +atm0s-sdn-network = { path = "../../network", version = "0.3.1" } atm0s-sdn-identity = { path = "../../core/identity", version = "0.2.0" } atm0s-sdn-utils = { path = "../../core/utils", version = "0.1.1" } async-trait = { workspace = true } diff --git a/packages/transports/udp/CHANGELOG.md b/packages/transports/udp/CHANGELOG.md index 9dc733f3..5ac4caaf 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.6](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-transport-udp-v0.1.5...atm0s-sdn-transport-udp-v0.1.6) - 2024-01-24 + +### Fixed +- *(deps)* update rust crate snow to 0.9.5 ([#120](https://github.com/8xFF/atm0s-sdn/pull/120)) +- *(deps)* update rust crate local-ip-address to 0.5.7 ([#117](https://github.com/8xFF/atm0s-sdn/pull/117)) + ## [0.1.5](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-transport-udp-v0.1.4...atm0s-sdn-transport-udp-v0.1.5) - 2024-01-09 ### Added diff --git a/packages/transports/udp/Cargo.toml b/packages/transports/udp/Cargo.toml index 4c2eb0ac..0e9f7828 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.5" +version = "0.1.6" edition = "2021" description = "UDP Transport in atm0s-sdn" license = "MIT" @@ -8,7 +8,7 @@ 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.3.0" } +atm0s-sdn-network = { path = "../../network", version = "0.3.1" } atm0s-sdn-identity = { path = "../../core/identity", version = "0.2.0" } atm0s-sdn-utils = { path = "../../core/utils", version = "0.1.1" } async-trait = { workspace = true } diff --git a/packages/transports/vnet/CHANGELOG.md b/packages/transports/vnet/CHANGELOG.md index c78dde44..7d08f951 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.1](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-transport-vnet-v0.2.0...atm0s-sdn-transport-vnet-v0.2.1) - 2024-01-24 + +### Other +- updated the following local packages: atm0s-sdn-network + ## [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 diff --git a/packages/transports/vnet/Cargo.toml b/packages/transports/vnet/Cargo.toml index 1eae21c0..f9a0d0ad 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.2.0" +version = "0.2.1" edition = "2021" description = "Vitual Network Transport in atm0s-sdn" license = "MIT" @@ -8,7 +8,7 @@ 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.3.0" } +atm0s-sdn-network = { path = "../../network", version = "0.3.1" } atm0s-sdn-identity = { path = "../../core/identity", version = "0.2.0" } atm0s-sdn-utils = { path = "../../core/utils", version = "0.1.1" } async-trait = { workspace = true }