Skip to content

Commit

Permalink
chore: release 0.2.2 (#176)
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Jul 22, 2024
1 parent fa3102d commit 5d16fd6
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 5 deletions.
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.1", features = ["vpn"] }
atm0s-sdn = { path = "../packages/runner", version = "0.2.2", features = ["vpn"] }
tokio = { version = "1", features = ["full"] }
poem = { version = "2.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.4.1", features = ["fuzz"] }
atm0s-sdn-network = { path = "../packages/network", version = "0.5.0", features = ["fuzz"] }

[[bin]]
name = "network_control_pkt"
Expand Down
5 changes: 5 additions & 0 deletions packages/network/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.5.0](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-network-v0.4.1...atm0s-sdn-network-v0.5.0) - 2024-07-22

### Added
- listen multiple UDP addresses ([#175](https://github.com/8xFF/atm0s-sdn/pull/175))

## [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
Expand Down
2 changes: 1 addition & 1 deletion 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.4.1"
version = "0.5.0"
edition = "2021"
description = "Main network-plane of atm0s-sdn"
license = "MIT"
Expand Down
5 changes: 5 additions & 0 deletions packages/runner/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.2](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-v0.2.1...atm0s-sdn-v0.2.2) - 2024-07-22

### Added
- listen multiple UDP addresses ([#175](https://github.com/8xFF/atm0s-sdn/pull/175))

## [0.2.1](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-v0.2.0...atm0s-sdn-v0.2.1) - 2024-07-22

### Fixed
Expand Down
4 changes: 2 additions & 2 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.1"
version = "0.2.2"
edition = "2021"
repository = "https://github.com/8xFF/atm0s-sdn"
description = "Decentralized Ultra-Low-Latency Software Defined Network"
Expand All @@ -13,7 +13,7 @@ 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.1" }
atm0s-sdn-network = { path = "../network", version = "0.4.1" }
atm0s-sdn-network = { path = "../network", version = "0.5.0" }

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

0 comments on commit 5d16fd6

Please sign in to comment.