diff --git a/examples/Cargo.toml b/examples/Cargo.toml index 4d0add38..386f8505 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.5" } +atm0s-sdn = { path = "../packages/runner", features = ["all"], version = "0.1.6" } 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" } +atm0s-sdn-redis-server = { path = "../packages/apps/redis", version = "0.1.5" } 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 7f2031bf..00772c43 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.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 +- updated the following local packages: atm0s-sdn-key-value + ## [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 diff --git a/packages/apps/redis/Cargo.toml b/packages/apps/redis/Cargo.toml index 35119417..70a56f9c 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.4" +version = "0.1.5" edition = "2021" description = "A simple redis server for atm0s-sdn" license = "MIT" @@ -12,7 +12,7 @@ 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.6" } +atm0s-sdn-key-value = { path = "../../services/key_value", version = "0.1.7" } 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 48fec3d5..ac19f3bb 100644 --- a/packages/integration_tests/Cargo.toml +++ b/packages/integration_tests/Cargo.toml @@ -9,7 +9,7 @@ publish = false [dependencies] [dev-dependencies] -atm0s-sdn = { path = "../runner", version = "0.1.5", features = ["all"] } +atm0s-sdn = { path = "../runner", version = "0.1.6", features = ["all"] } atm0s-sdn-transport-vnet = { path = "../transports/vnet", version = "0.2.0" } bytes = "1.5.0" log = "0.4.20" diff --git a/packages/runner/CHANGELOG.md b/packages/runner/CHANGELOG.md index a38d69f5..7bbaace0 100644 --- a/packages/runner/CHANGELOG.md +++ b/packages/runner/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-v0.1.5...atm0s-sdn-v0.1.6) - 2023-12-28 + +### Fixed +- fix key-value fired duplicated events in case of multi subscribers ([#104](https://github.com/8xFF/atm0s-sdn/pull/104)) + ## [0.1.5](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-v0.1.4...atm0s-sdn-v0.1.5) - 2023-12-27 ### Added diff --git a/packages/runner/Cargo.toml b/packages/runner/Cargo.toml index 0a36108f..a8d0f9a8 100644 --- a/packages/runner/Cargo.toml +++ b/packages/runner/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "atm0s-sdn" -version = "0.1.5" +version = "0.1.6" edition = "2021" repository = "https://github.com/8xFF/atm0s-sdn" description = "Decentralized Ultra-Low-Latency Software Defined Network" @@ -16,14 +16,14 @@ 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-transport-compose = { path = "../transports/compose", version = "0.1.0", optional = true } +atm0s-sdn-transport-compose = { path = "../transports/compose", version = "0.1.1", 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-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 } async-trait = { workspace = true } diff --git a/packages/services/key_value/CHANGELOG.md b/packages/services/key_value/CHANGELOG.md index 118fda54..d3e2f450 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.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 +- fix key-value fired duplicated events in case of multi subscribers ([#104](https://github.com/8xFF/atm0s-sdn/pull/104)) + ## [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 diff --git a/packages/services/key_value/Cargo.toml b/packages/services/key_value/Cargo.toml index 897124f1..75204319 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.6" +version = "0.1.7" edition = "2021" description = "KeyValue service for atm0s-sdn" license = "MIT" diff --git a/packages/services/manual_discovery/CHANGELOG.md b/packages/services/manual_discovery/CHANGELOG.md index 37dd1b3d..825fbdd8 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.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 +- updated the following local packages: atm0s-sdn-key-value + ## [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 diff --git a/packages/services/manual_discovery/Cargo.toml b/packages/services/manual_discovery/Cargo.toml index 80e7b5df..5ae4cff1 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.3" +version = "0.2.4" edition = "2021" description = "Manual discovery service in atm0s-sdn" license = "MIT" @@ -12,7 +12,7 @@ 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.6" } +atm0s-sdn-key-value = { path = "../../services/key_value", version = "0.1.7" } 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 a2fd7695..65286342 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.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 +- updated the following local packages: atm0s-sdn-key-value + ## [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 diff --git a/packages/services/pub_sub/Cargo.toml b/packages/services/pub_sub/Cargo.toml index a1d8a2d2..659669ca 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.5" +version = "0.1.6" edition = "2021" description = "Pub/Sub service in atm0s-sdn" license = "MIT" @@ -12,7 +12,7 @@ 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.6" } +atm0s-sdn-key-value = { path = "../../services/key_value", version = "0.1.7" } log = { workspace = true } async-trait = { workspace = true } async-std = { workspace = true } diff --git a/packages/transports/compose/CHANGELOG.md b/packages/transports/compose/CHANGELOG.md new file mode 100644 index 00000000..7c966773 --- /dev/null +++ b/packages/transports/compose/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-transport-compose-v0.1.0...atm0s-sdn-transport-compose-v0.1.1) - 2023-12-28 + +### Other +- release ([#99](https://github.com/8xFF/atm0s-sdn/pull/99)) diff --git a/packages/transports/compose/Cargo.toml b/packages/transports/compose/Cargo.toml index 94fdcd6c..bbebdb33 100644 --- a/packages/transports/compose/Cargo.toml +++ b/packages/transports/compose/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "atm0s-sdn-transport-compose" -version = "0.1.0" +version = "0.1.1" edition = "2021" description = "UDP Transport in atm0s-sdn" license = "MIT"