Skip to content

Commit

Permalink
chore: release (#180)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] authored Nov 8, 2024
1 parent 794aecc commit 0114e62
Show file tree
Hide file tree
Showing 8 changed files with 30 additions and 8 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.2", features = ["vpn"] }
atm0s-sdn = { path = "../packages/runner", version = "0.2.3", 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.5.0", features = ["fuzz"] }
atm0s-sdn-network = { path = "../packages/network", version = "0.6.0", features = ["fuzz"] }

[[bin]]
name = "network_control_pkt"
Expand Down
6 changes: 6 additions & 0 deletions packages/core/router/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.2.2](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-router-v0.2.1...atm0s-sdn-router-v0.2.2) - 2024-11-08

### Other

- update Cargo.toml dependencies

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

### Other
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.1"
version = "0.2.2"
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.0](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-network-v0.5.0...atm0s-sdn-network-v0.6.0) - 2024-11-08

### Added

- task clean-up with new sans-io-runtime ([#179](https://github.com/8xFF/atm0s-sdn/pull/179))

## [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
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.5.0"
version = "0.6.0"
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.1" }
atm0s-sdn-router = { path = "../core/router", version = "0.2.2" }
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.3](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-v0.2.2...atm0s-sdn-v0.2.3) - 2024-11-08

### Added

- task clean-up with new sans-io-runtime ([#179](https://github.com/8xFF/atm0s-sdn/pull/179))

### Other

- update Cargo.toml dependencies

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

### 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.2"
version = "0.2.3"
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.1" }
atm0s-sdn-network = { path = "../network", version = "0.5.0" }
atm0s-sdn-router = { path = "../core/router", version = "0.2.2" }
atm0s-sdn-network = { path = "../network", version = "0.6.0" }

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

0 comments on commit 0114e62

Please sign in to comment.