Skip to content

Commit

Permalink
chore: release (#95)
Browse files Browse the repository at this point in the history
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] authored Dec 12, 2023
1 parent 60b9804 commit b9fd66a
Show file tree
Hide file tree
Showing 32 changed files with 133 additions and 58 deletions.
6 changes: 3 additions & 3 deletions examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.3" }
atm0s-sdn-tun-tap = { path = "../packages/services/tun_tap", version = "0.1.3" }
atm0s-sdn-redis-server = { path = "../packages/apps/redis", version = "0.1.2" }
atm0s-sdn = { path = "../packages/runner", features = ["all"], version = "0.1.4" }
atm0s-sdn-tun-tap = { path = "../packages/services/tun_tap", version = "0.1.4" }
atm0s-sdn-redis-server = { path = "../packages/apps/redis", version = "0.1.3" }
reedline-repl-rs = { version = "1.0.7", features = ["async"] }
thiserror = { workspace = true }
async-std = { workspace = true }
Expand Down
5 changes: 5 additions & 0 deletions packages/apps/redis/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.1.3](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-redis-server-v0.1.2...atm0s-sdn-redis-server-v0.1.3) - 2023-12-12

### Other
- updated the following local packages: atm0s-sdn-key-value, atm0s-sdn-network, atm0s-sdn-router

## [0.1.2](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-redis-server-v0.1.1...atm0s-sdn-redis-server-v0.1.2) - 2023-12-11

### Other
Expand Down
8 changes: 4 additions & 4 deletions packages/apps/redis/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "atm0s-sdn-redis-server"
version = "0.1.2"
version = "0.1.3"
edition = "2021"
description = "A simple redis server for atm0s-sdn"
license = "MIT"
Expand All @@ -9,10 +9,10 @@ license = "MIT"

[dependencies]
atm0s-sdn-identity = { path = "../../core/identity", version = "0.1.2" }
atm0s-sdn-router = { path = "../../core/router", version = "0.1.2" }
atm0s-sdn-router = { path = "../../core/router", version = "0.1.3" }
atm0s-sdn-utils = { path = "../../core/utils", version = "0.1.1" }
atm0s-sdn-network = { path = "../../network", version = "0.2.1" }
atm0s-sdn-key-value = { path = "../../services/key_value", version = "0.1.4" }
atm0s-sdn-network = { path = "../../network", version = "0.2.2" }
atm0s-sdn-key-value = { path = "../../services/key_value", version = "0.1.5" }
log = { workspace = true }
serde = { workspace = true }
async-std = { workspace = true }
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.1.3](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-router-v0.1.2...atm0s-sdn-router-v0.1.3) - 2023-12-12

### Other
- update dependencies

## [0.1.2](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-router-v0.1.1...atm0s-sdn-router-v0.1.2) - 2023-12-11

### 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.1.2"
version = "0.1.3"
edition = "2021"
description = "Router interface for atm0s-sdn"
license = "MIT"
Expand Down
4 changes: 2 additions & 2 deletions packages/integration_tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ publish = false
[dependencies]

[dev-dependencies]
atm0s-sdn = { path = "../runner", version = "0.1.3", features = ["all"] }
atm0s-sdn-transport-vnet = { path = "../transports/vnet", version = "0.1.3" }
atm0s-sdn = { path = "../runner", version = "0.1.4", features = ["all"] }
atm0s-sdn-transport-vnet = { path = "../transports/vnet", version = "0.1.4" }
bytes = "1.5.0"
log = "0.4.20"
env_logger = "0.10.1"
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.2.2](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-network-v0.2.1...atm0s-sdn-network-v0.2.2) - 2023-12-12

### Other
- update dependencies

## [0.2.1](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-network-v0.2.0...atm0s-sdn-network-v0.2.1) - 2023-12-11

### Other
Expand Down
6 changes: 3 additions & 3 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.2.1"
version = "0.2.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.1.1" }
atm0s-sdn-identity = { path = "../core/identity", version = "0.1.2" }
atm0s-sdn-router = { path = "../core/router", version = "0.1.2" }
atm0s-sdn-router = { path = "../core/router", version = "0.1.3" }
async-std = { workspace = true }
futures = "0.3"
convert-enum = "0.1.0"
Expand All @@ -25,4 +25,4 @@ bincode = "1.3.3"
[dev-dependencies]
env_logger = { workspace = true }
mockall = { workspace = true }
atm0s-sdn-router = { path = "../core/router", version = "0.1.2", features = ["mock"]}
atm0s-sdn-router = { path = "../core/router", version = "0.1.3", features = ["mock"]}
5 changes: 5 additions & 0 deletions packages/routers/layers_spread_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.1.4](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-layers-spread-router-v0.1.3...atm0s-sdn-layers-spread-router-v0.1.4) - 2023-12-12

### Other
- updated the following local packages: atm0s-sdn-router

## [0.1.3](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-layers-spread-router-v0.1.2...atm0s-sdn-layers-spread-router-v0.1.3) - 2023-12-11

### Other
Expand Down
4 changes: 2 additions & 2 deletions packages/routers/layers_spread_router/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "atm0s-sdn-layers-spread-router"
version = "0.1.3"
version = "0.1.4"
edition = "2021"
description = "Spread router mechanism in atm0s-sdn"
license = "MIT"
Expand All @@ -9,7 +9,7 @@ license = "MIT"

[dependencies]
atm0s-sdn-identity = { path = "../../core/identity", version = "0.1.2" }
atm0s-sdn-router = { path = "../../core/router", version = "0.1.2" }
atm0s-sdn-router = { path = "../../core/router", version = "0.1.3" }
atm0s-sdn-utils = { path = "../../core/utils", version = "0.1.1" }
serde = { workspace = true }
log = { workspace = true }
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.1.4](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-v0.1.3...atm0s-sdn-v0.1.4) - 2023-12-12

### Other
- update dependencies

## [0.1.3](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-v0.1.2...atm0s-sdn-v0.1.3) - 2023-12-11

### Other
Expand Down
22 changes: 11 additions & 11 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.1.3"
version = "0.1.4"
edition = "2021"
repository = "https://github.com/8xFF/atm0s-sdn"
description = "Decentralized Ultra-Low-Latency Software Defined Network"
Expand All @@ -13,17 +13,17 @@ thiserror = { workspace = true }
async-std = { workspace = true }

atm0s-sdn-identity = { path = "../core/identity", version = "0.1.2" }
atm0s-sdn-router = { path = "../core/router", version = "0.1.2" }
atm0s-sdn-router = { path = "../core/router", version = "0.1.3" }
atm0s-sdn-utils = { path = "../core/utils", version = "0.1.1" }
atm0s-sdn-network = { path = "../network", version = "0.2.1" }
atm0s-sdn-transport-udp = { path = "../transports/udp", version = "0.1.2", optional = true }
atm0s-sdn-transport-tcp = { path = "../transports/tcp", version = "0.1.3", optional = true }
atm0s-sdn-layers-spread-router = { path = "../routers/layers_spread_router", version = "0.1.3", optional = true }
atm0s-sdn-layers-spread-router-sync = { path = "../services/layers_spread_router_sync", version = "0.1.3", optional = true }
atm0s-sdn-manual-discovery = { path = "../services/manual_discovery", version = "0.2.1", optional = true }
atm0s-sdn-key-value = { path = "../services/key_value", version = "0.1.4", optional = true }
atm0s-sdn-pub-sub = { path = "../services/pub_sub", version = "0.1.3", optional = true }
atm0s-sdn-rpc = { path = "../services/rpc", version = "0.1.1", optional = true }
atm0s-sdn-network = { path = "../network", version = "0.2.2" }
atm0s-sdn-transport-udp = { path = "../transports/udp", version = "0.1.3", optional = true }
atm0s-sdn-transport-tcp = { path = "../transports/tcp", version = "0.1.4", optional = true }
atm0s-sdn-layers-spread-router = { path = "../routers/layers_spread_router", version = "0.1.4", optional = true }
atm0s-sdn-layers-spread-router-sync = { path = "../services/layers_spread_router_sync", version = "0.1.4", optional = true }
atm0s-sdn-manual-discovery = { path = "../services/manual_discovery", version = "0.2.2", optional = true }
atm0s-sdn-key-value = { path = "../services/key_value", version = "0.1.5", optional = true }
atm0s-sdn-pub-sub = { path = "../services/pub_sub", version = "0.1.4", optional = true }
atm0s-sdn-rpc = { path = "../services/rpc", version = "0.1.2", optional = true }

[features]
transport-udp = ["atm0s-sdn-transport-udp"]
Expand Down
5 changes: 5 additions & 0 deletions packages/services/dht_discovery/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.1.4](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-dht-discovery-v0.1.3...atm0s-sdn-dht-discovery-v0.1.4) - 2023-12-12

### Other
- updated the following local packages: atm0s-sdn-network, atm0s-sdn-router

## [0.1.3](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-dht-discovery-v0.1.2...atm0s-sdn-dht-discovery-v0.1.3) - 2023-12-11

### Other
Expand Down
8 changes: 4 additions & 4 deletions packages/services/dht_discovery/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "atm0s-sdn-dht-discovery"
version = "0.1.3"
version = "0.1.4"
edition = "2021"
description = "DHT discovery for atm0s-sdn"
license = "MIT"
Expand All @@ -9,9 +9,9 @@ license = "MIT"

[dependencies]
atm0s-sdn-identity = { path = "../../core/identity", version = "0.1.2" }
atm0s-sdn-router = { path = "../../core/router", version = "0.1.2" }
atm0s-sdn-router = { path = "../../core/router", version = "0.1.3" }
atm0s-sdn-utils = { path = "../../core/utils", version = "0.1.1" }
atm0s-sdn-network = { path = "../../network", version = "0.2.1" }
atm0s-sdn-network = { path = "../../network", version = "0.2.2" }
async-trait = { workspace = true }
bincode = { workspace = true }
thiserror = { workspace = true }
Expand All @@ -23,4 +23,4 @@ serde = { workspace = true }
rand = "0.8"
async-std = { workspace = true }
env_logger = { workspace = true }
atm0s-sdn-transport-vnet = { path = "../../transports/vnet", version = "0.1.3" }
atm0s-sdn-transport-vnet = { path = "../../transports/vnet", version = "0.1.4" }
5 changes: 5 additions & 0 deletions packages/services/key_value/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.1.5](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-key-value-v0.1.4...atm0s-sdn-key-value-v0.1.5) - 2023-12-12

### Other
- update dependencies

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

### Other
Expand Down
6 changes: 3 additions & 3 deletions packages/services/key_value/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "atm0s-sdn-key-value"
version = "0.1.4"
version = "0.1.5"
edition = "2021"
description = "KeyValue service for atm0s-sdn"
license = "MIT"
Expand All @@ -9,9 +9,9 @@ license = "MIT"

[dependencies]
atm0s-sdn-identity = { path = "../../core/identity", version = "0.1.2" }
atm0s-sdn-router = { path = "../../core/router", version = "0.1.2" }
atm0s-sdn-router = { path = "../../core/router", version = "0.1.3" }
atm0s-sdn-utils = { path = "../../core/utils", version = "0.1.1" }
atm0s-sdn-network = { path = "../../network", version = "0.2.1" }
atm0s-sdn-network = { path = "../../network", version = "0.2.2" }
thiserror = { workspace = true }
log = { workspace = true }
serde = { workspace = true }
Expand Down
5 changes: 5 additions & 0 deletions packages/services/layers_spread_router_sync/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.1.4](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-layers-spread-router-sync-v0.1.3...atm0s-sdn-layers-spread-router-sync-v0.1.4) - 2023-12-12

### Other
- updated the following local packages: atm0s-sdn-network, atm0s-sdn-router

## [0.1.3](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-layers-spread-router-sync-v0.1.2...atm0s-sdn-layers-spread-router-sync-v0.1.3) - 2023-12-11

### Other
Expand Down
8 changes: 4 additions & 4 deletions packages/services/layers_spread_router_sync/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "atm0s-sdn-layers-spread-router-sync"
version = "0.1.3"
version = "0.1.4"
edition = "2021"
description = "Spread router sync service in atm0s-sdn"
license = "MIT"
Expand All @@ -9,10 +9,10 @@ license = "MIT"

[dependencies]
atm0s-sdn-identity = { path = "../../core/identity", version = "0.1.2" }
atm0s-sdn-router = { path = "../../core/router", version = "0.1.2" }
atm0s-sdn-router = { path = "../../core/router", version = "0.1.3" }
atm0s-sdn-utils = { path = "../../core/utils", version = "0.1.1" }
atm0s-sdn-network = { path = "../../network", version = "0.2.1" }
atm0s-sdn-layers-spread-router = { path = "../../routers/layers_spread_router", version = "0.1.3" }
atm0s-sdn-network = { path = "../../network", version = "0.2.2" }
atm0s-sdn-layers-spread-router = { path = "../../routers/layers_spread_router", version = "0.1.4" }
async-trait = { workspace = true }
bincode = { workspace = true }
thiserror = { workspace = true }
Expand Down
5 changes: 5 additions & 0 deletions packages/services/manual_discovery/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-manual-discovery-v0.2.1...atm0s-sdn-manual-discovery-v0.2.2) - 2023-12-12

### Other
- updated the following local packages: atm0s-sdn-key-value, atm0s-sdn-network, atm0s-sdn-router

## [0.2.1](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-manual-discovery-v0.2.0...atm0s-sdn-manual-discovery-v0.2.1) - 2023-12-11

### Other
Expand Down
8 changes: 4 additions & 4 deletions packages/services/manual_discovery/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "atm0s-sdn-manual-discovery"
version = "0.2.1"
version = "0.2.2"
edition = "2021"
description = "Manual discovery service in atm0s-sdn"
license = "MIT"
Expand All @@ -9,10 +9,10 @@ license = "MIT"

[dependencies]
atm0s-sdn-identity = { path = "../../core/identity", version = "0.1.2" }
atm0s-sdn-router = { path = "../../core/router", version = "0.1.2" }
atm0s-sdn-router = { path = "../../core/router", version = "0.1.3" }
atm0s-sdn-utils = { path = "../../core/utils", version = "0.1.1" }
atm0s-sdn-network = { path = "../../network", version = "0.2.1" }
atm0s-sdn-key-value = { path = "../../services/key_value", version = "0.1.4" }
atm0s-sdn-network = { path = "../../network", version = "0.2.2" }
atm0s-sdn-key-value = { path = "../../services/key_value", version = "0.1.5" }
async-trait = { workspace = true }
thiserror = { workspace = true }
log = { workspace = true }
Expand Down
5 changes: 5 additions & 0 deletions packages/services/pub_sub/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.1.4](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-pub-sub-v0.1.3...atm0s-sdn-pub-sub-v0.1.4) - 2023-12-12

### Other
- updated the following local packages: atm0s-sdn-key-value, atm0s-sdn-network, atm0s-sdn-router

## [0.1.3](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-pub-sub-v0.1.2...atm0s-sdn-pub-sub-v0.1.3) - 2023-12-11

### Other
Expand Down
8 changes: 4 additions & 4 deletions packages/services/pub_sub/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "atm0s-sdn-pub-sub"
version = "0.1.3"
version = "0.1.4"
edition = "2021"
description = "Pub/Sub service in atm0s-sdn"
license = "MIT"
Expand All @@ -9,10 +9,10 @@ license = "MIT"

[dependencies]
atm0s-sdn-identity = { path = "../../core/identity", version = "0.1.2" }
atm0s-sdn-router = { path = "../../core/router", version = "0.1.2" }
atm0s-sdn-router = { path = "../../core/router", version = "0.1.3" }
atm0s-sdn-utils = { path = "../../core/utils", version = "0.1.1" }
atm0s-sdn-network = { path = "../../network", version = "0.2.1" }
atm0s-sdn-key-value = { path = "../../services/key_value", version = "0.1.4" }
atm0s-sdn-network = { path = "../../network", version = "0.2.2" }
atm0s-sdn-key-value = { path = "../../services/key_value", version = "0.1.5" }
log = { workspace = true }
async-trait = { workspace = true }
async-std = { workspace = true }
Expand Down
5 changes: 5 additions & 0 deletions packages/services/rpc/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.1.2](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-rpc-v0.1.1...atm0s-sdn-rpc-v0.1.2) - 2023-12-12

### Fixed
- rpc sometime not awake cause rpc slow ([#96](https://github.com/8xFF/atm0s-sdn/pull/96))

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

### Other
Expand Down
6 changes: 3 additions & 3 deletions packages/services/rpc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "atm0s-sdn-rpc"
version = "0.1.1"
version = "0.1.2"
edition = "2021"
description = "RPC service in atm0s-sdn"
license = "MIT"
Expand All @@ -9,9 +9,9 @@ license = "MIT"

[dependencies]
atm0s-sdn-identity = { path = "../../core/identity", version = "0.1.2" }
atm0s-sdn-router = { path = "../../core/router", version = "0.1.2" }
atm0s-sdn-router = { path = "../../core/router", version = "0.1.3" }
atm0s-sdn-utils = { path = "../../core/utils", version = "0.1.1" }
atm0s-sdn-network = { path = "../../network", version = "0.2.1" }
atm0s-sdn-network = { path = "../../network", version = "0.2.2" }
parking_lot = { workspace = true }
async-std = { workspace = true }
serde = { workspace = true }
Expand Down
Loading

0 comments on commit b9fd66a

Please sign in to comment.