Skip to content

Commit

Permalink
chore: release 0.2.1 (#147)
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Jul 22, 2024
1 parent b714e54 commit 2cbfec4
Show file tree
Hide file tree
Showing 12 changed files with 46 additions and 15 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.0", features = ["vpn"] }
atm0s-sdn = { path = "../packages/runner", version = "0.2.1", 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.0", features = ["fuzz"] }
atm0s-sdn-network = { path = "../packages/network", version = "0.4.1", features = ["fuzz"] }

[[bin]]
name = "network_control_pkt"
Expand Down
5 changes: 5 additions & 0 deletions packages/core/identity/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.3.1](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-identity-v0.3.0...atm0s-sdn-identity-v0.3.1) - 2024-07-22

### Other
- clippy fixes ([#167](https://github.com/8xFF/atm0s-sdn/pull/167))

## [0.2.0](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-identity-v0.1.2...atm0s-sdn-identity-v0.2.0) - 2023-12-27

### Added
Expand Down
2 changes: 1 addition & 1 deletion packages/core/identity/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "atm0s-sdn-identity"
version = "0.3.0"
version = "0.3.1"
edition = "2021"
description = "A library for generating and verifying identities for atm0s-sdn"
license = "MIT"
Expand Down
5 changes: 5 additions & 0 deletions packages/core/router/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.1](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-router-v0.2.0...atm0s-sdn-router-v0.2.1) - 2024-07-22

### Other
- clippy fixes ([#167](https://github.com/8xFF/atm0s-sdn/pull/167))

## [0.1.4](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-router-v0.1.3...atm0s-sdn-router-v0.1.4) - 2023-12-27

### Other
Expand Down
6 changes: 3 additions & 3 deletions packages/core/router/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[package]
name = "atm0s-sdn-router"
version = "0.2.0"
version = "0.2.1"
edition = "2021"
description = "Router interface for atm0s-sdn"
license = "MIT"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
atm0s-sdn-identity = { path = "../identity", version = "0.3.0" }
atm0s-sdn-utils = { path = "../utils", version = "0.2.0" }
atm0s-sdn-identity = { path = "../identity", version = "0.3.1" }
atm0s-sdn-utils = { path = "../utils", version = "0.2.1" }
serde = { workspace = true }
log = { workspace = true }
mockall = { workspace = true }
Expand Down
5 changes: 5 additions & 0 deletions packages/core/utils/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.1](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-utils-v0.2.0...atm0s-sdn-utils-v0.2.1) - 2024-07-22

### Other
- clippy fixes ([#167](https://github.com/8xFF/atm0s-sdn/pull/167))

## [0.1.1](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-utils-v0.1.0...atm0s-sdn-utils-v0.1.1) - 2023-12-11

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

## [Unreleased]

## [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
- switch to single bind for resolve connect error with multi-addresses machine ([#172](https://github.com/8xFF/atm0s-sdn/pull/172))

### Other
- clippy fixes ([#167](https://github.com/8xFF/atm0s-sdn/pull/167))

## [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
Expand Down
8 changes: 4 additions & 4 deletions packages/network/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
[package]
name = "atm0s-sdn-network"
version = "0.4.0"
version = "0.4.1"
edition = "2021"
description = "Main network-plane of atm0s-sdn"
license = "MIT"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
atm0s-sdn-utils = { path = "../core/utils", version = "0.2.0" }
atm0s-sdn-identity = { path = "../core/identity", version = "0.3.0" }
atm0s-sdn-router = { path = "../core/router", version = "0.2.0" }
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" }
sans-io-runtime = { workspace = true, default-features = false }
rand = { workspace = true }
mockall = { workspace = true }
Expand Down
8 changes: 8 additions & 0 deletions packages/runner/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@ 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-v0.2.0...atm0s-sdn-v0.2.1) - 2024-07-22

### Fixed
- switch to single bind for resolve connect error with multi-addresses machine ([#172](https://github.com/8xFF/atm0s-sdn/pull/172))

### Other
- clippy fixes ([#167](https://github.com/8xFF/atm0s-sdn/pull/167))

## [0.1.10](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-v0.1.9...atm0s-sdn-v0.1.10) - 2024-02-21

### Other
Expand Down
8 changes: 4 additions & 4 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.0"
version = "0.2.1"
edition = "2021"
repository = "https://github.com/8xFF/atm0s-sdn"
description = "Decentralized Ultra-Low-Latency Software Defined Network"
Expand All @@ -11,9 +11,9 @@ license = "MIT"
[dependencies]
thiserror = { workspace = true }
sans-io-runtime = { workspace = true, features = ["poll-backend", "polling-backend", "udp"] }
atm0s-sdn-identity = { path = "../core/identity", version = "0.3.0" }
atm0s-sdn-router = { path = "../core/router", version = "0.2.0" }
atm0s-sdn-network = { path = "../network", version = "0.4.0" }
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" }

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

0 comments on commit 2cbfec4

Please sign in to comment.