Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

chore: release #185

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.4", features = ["vpn"] }
atm0s-sdn = { path = "../packages/runner", version = "0.2.5", features = ["vpn"] }
tokio = { version = "1", features = ["full"] }
poem = { version = "3.0", features = ["embed", "static-files", "websocket"] }
rust-embed = { version = "8.2", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion fuzz/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ cargo-fuzz = true

[dependencies]
libfuzzer-sys = "0.4"
atm0s-sdn-network = { path = "../packages/network", version = "0.6.1", features = ["fuzz"] }
atm0s-sdn-network = { path = "../packages/network", version = "0.6.2", features = ["fuzz"] }

[[bin]]
name = "network_control_pkt"
Expand Down
10 changes: 10 additions & 0 deletions packages/core/router/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,16 @@ 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-router-v0.2.3...atm0s-sdn-router-v0.2.4) - 2025-02-08

### Added

- discovery node by service broadcast (#188)

### Fixed

- avoid send wrong hops with router-sync local services (#184)

## [0.2.3](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-router-v0.2.2...atm0s-sdn-router-v0.2.3) - 2024-11-26

### Added
Expand Down
2 changes: 1 addition & 1 deletion packages/core/router/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "atm0s-sdn-router"
version = "0.2.3"
version = "0.2.4"
edition = "2021"
description = "Router interface for atm0s-sdn"
license = "MIT"
Expand Down
6 changes: 6 additions & 0 deletions packages/network/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.6.2](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-network-v0.6.1...atm0s-sdn-network-v0.6.2) - 2025-02-08

### Added

- discovery node by service broadcast (#188)

## [0.6.1](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-network-v0.6.0...atm0s-sdn-network-v0.6.1) - 2024-11-26

### Added
Expand Down
4 changes: 2 additions & 2 deletions packages/network/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "atm0s-sdn-network"
version = "0.6.1"
version = "0.6.2"
edition = "2021"
description = "Main network-plane of atm0s-sdn"
license = "MIT"
Expand All @@ -10,7 +10,7 @@ license = "MIT"
[dependencies]
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.3" }
atm0s-sdn-router = { path = "../core/router", version = "0.2.4" }
sans-io-runtime = { workspace = true, default-features = false }
rand = { workspace = true }
mockall = { workspace = true }
Expand Down
10 changes: 10 additions & 0 deletions packages/runner/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,16 @@ 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-v0.2.4...atm0s-sdn-v0.2.5) - 2025-02-08

### Added

- discovery node by service broadcast (#188)

### Fixed

- avoid send wrong hops with router-sync local services (#184)

## [0.2.4](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-v0.2.3...atm0s-sdn-v0.2.4) - 2024-11-26

### Added
Expand Down
6 changes: 3 additions & 3 deletions packages/runner/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "atm0s-sdn"
version = "0.2.4"
version = "0.2.5"
edition = "2021"
repository = "https://github.com/8xFF/atm0s-sdn"
description = "Decentralized Ultra-Low-Latency Software Defined Network"
Expand All @@ -12,8 +12,8 @@ license = "MIT"
thiserror = { workspace = true }
sans-io-runtime = { workspace = true, features = ["poll-backend", "polling-backend", "udp"] }
atm0s-sdn-identity = { path = "../core/identity", version = "0.3.1" }
atm0s-sdn-router = { path = "../core/router", version = "0.2.3" }
atm0s-sdn-network = { path = "../network", version = "0.6.1" }
atm0s-sdn-router = { path = "../core/router", version = "0.2.4" }
atm0s-sdn-network = { path = "../network", version = "0.6.2" }

convert-enum = { workspace = true }
num_enum = { workspace = true }
Expand Down