Skip to content

Commit

Permalink
chore: release
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>
  • Loading branch information
github-actions[bot] committed Dec 11, 2023
1 parent f7ff0dc commit 7f98a84
Show file tree
Hide file tree
Showing 30 changed files with 132 additions and 15 deletions.
7 changes: 7 additions & 0 deletions packages/core/multiaddr/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ 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-multiaddr-v0.1.1...atm0s-sdn-multiaddr-v0.1.2) - 2023-12-11

### Fixed
- *(deps)* update rust crate url to 2.5.0 ([#74](https://github.com/8xFF/atm0s-sdn/pull/74))
- *(deps)* update rust crate percent-encoding to 2.3.1 ([#73](https://github.com/8xFF/atm0s-sdn/pull/73))
- *(deps)* update rust crate data-encoding to 2.5 ([#72](https://github.com/8xFF/atm0s-sdn/pull/72))

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

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion packages/core/multiaddr/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ keywords = ["multiaddr", "ipfs"]
license = "MIT"
name = "atm0s-sdn-multiaddr"
readme = "README.md"
version = "0.1.1"
version = "0.1.2"


[features]
Expand Down
12 changes: 12 additions & 0 deletions packages/core/router/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

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

### Fixed
- missing register service ([#85](https://github.com/8xFF/atm0s-sdn/pull/85))
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.0"
version = "0.1.1"
edition = "2021"
description = "Router interface for atm0s-sdn"
license = "MIT"
Expand Down
12 changes: 12 additions & 0 deletions packages/core/utils/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [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
- manual-discovery with node tags ([#84](https://github.com/8xFF/atm0s-sdn/pull/84))
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.1.0"
version = "0.1.1"
edition = "2021"
description = "A collection of utilities for atm0s-sdn"
license = "MIT"
Expand Down
9 changes: 9 additions & 0 deletions packages/network/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

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

### Added
- rpc service and fi ([#87](https://github.com/8xFF/atm0s-sdn/pull/87))
- manual-discovery with node tags ([#84](https://github.com/8xFF/atm0s-sdn/pull/84))

### Fixed
- missing register service ([#85](https://github.com/8xFF/atm0s-sdn/pull/85))

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

### Other
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.1.1"
version = "0.2.0"
edition = "2021"
description = "Main network-plane of atm0s-sdn"
license = "MIT"
Expand Down
8 changes: 8 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,14 @@ 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-layers-spread-router-v0.1.1...atm0s-sdn-layers-spread-router-v0.1.2) - 2023-12-11

### Added
- manual-discovery with node tags ([#84](https://github.com/8xFF/atm0s-sdn/pull/84))

### Fixed
- missing register service ([#85](https://github.com/8xFF/atm0s-sdn/pull/85))

## [0.1.1](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-layers-spread-router-v0.1.0...atm0s-sdn-layers-spread-router-v0.1.1) - 2023-11-17

### Other
Expand Down
2 changes: 1 addition & 1 deletion 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.1"
version = "0.1.2"
edition = "2021"
description = "Spread router mechanism in atm0s-sdn"
license = "MIT"
Expand Down
13 changes: 13 additions & 0 deletions packages/runner/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,19 @@ 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-v0.1.1...atm0s-sdn-v0.1.2) - 2023-12-11

### Added
- rpc service and fi ([#87](https://github.com/8xFF/atm0s-sdn/pull/87))
- manual-discovery with node tags ([#84](https://github.com/8xFF/atm0s-sdn/pull/84))

### Fixed
- missing register service ([#85](https://github.com/8xFF/atm0s-sdn/pull/85))
- *(deps)* update rust crate url to 2.5.0 ([#74](https://github.com/8xFF/atm0s-sdn/pull/74))
- *(deps)* update rust crate percent-encoding to 2.3.1 ([#73](https://github.com/8xFF/atm0s-sdn/pull/73))
- *(deps)* update rust crate data-encoding to 2.5 ([#72](https://github.com/8xFF/atm0s-sdn/pull/72))
- router sync service handler missing pop actions ([#82](https://github.com/8xFF/atm0s-sdn/pull/82))

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

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion 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.1"
version = "0.1.2"
edition = "2021"
repository = "https://github.com/8xFF/atm0s-sdn"
description = "Decentralized Ultra-Low-Latency Software Defined Network"
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.2](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-dht-discovery-v0.1.1...atm0s-sdn-dht-discovery-v0.1.2) - 2023-12-11

### Added
- rpc service and fi ([#87](https://github.com/8xFF/atm0s-sdn/pull/87))

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

### Other
Expand Down
2 changes: 1 addition & 1 deletion 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.1"
version = "0.1.2"
edition = "2021"
description = "DHT discovery for atm0s-sdn"
license = "MIT"
Expand Down
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.3](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-key-value-v0.1.2...atm0s-sdn-key-value-v0.1.3) - 2023-12-11

### Added
- rpc service and fi ([#87](https://github.com/8xFF/atm0s-sdn/pull/87))

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

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion 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.2"
version = "0.1.3"
edition = "2021"
description = "KeyValue service for atm0s-sdn"
license = "MIT"
Expand Down
8 changes: 8 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,14 @@ 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-layers-spread-router-sync-v0.1.1...atm0s-sdn-layers-spread-router-sync-v0.1.2) - 2023-12-11

### Added
- rpc service and fi ([#87](https://github.com/8xFF/atm0s-sdn/pull/87))

### Fixed
- router sync service handler missing pop actions ([#82](https://github.com/8xFF/atm0s-sdn/pull/82))

## [0.1.1](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-layers-spread-router-sync-v0.1.0...atm0s-sdn-layers-spread-router-sync-v0.1.1) - 2023-11-17

### Other
Expand Down
2 changes: 1 addition & 1 deletion 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.1"
version = "0.1.2"
edition = "2021"
description = "Spread router sync service in atm0s-sdn"
license = "MIT"
Expand Down
6 changes: 6 additions & 0 deletions packages/services/manual_discovery/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.0](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-manual-discovery-v0.1.1...atm0s-sdn-manual-discovery-v0.2.0) - 2023-12-11

### Added
- rpc service and fi ([#87](https://github.com/8xFF/atm0s-sdn/pull/87))
- manual-discovery with node tags ([#84](https://github.com/8xFF/atm0s-sdn/pull/84))

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

### Other
Expand Down
2 changes: 1 addition & 1 deletion 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.1.1"
version = "0.2.0"
edition = "2021"
description = "Manual discovery service in atm0s-sdn"
license = "MIT"
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.2](https://github.com/8xFF/atm0s-sdn/compare/atm0s-sdn-pub-sub-v0.1.1...atm0s-sdn-pub-sub-v0.1.2) - 2023-12-11

### Added
- rpc service and fi ([#87](https://github.com/8xFF/atm0s-sdn/pull/87))

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

### Other
Expand Down
2 changes: 1 addition & 1 deletion 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.1"
version = "0.1.2"
edition = "2021"
description = "Pub/Sub service in atm0s-sdn"
license = "MIT"
Expand Down
12 changes: 12 additions & 0 deletions packages/services/rpc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.1.0](https://github.com/8xFF/atm0s-sdn/releases/tag/atm0s-sdn-rpc-v0.1.0) - 2023-12-11

### Added
- rpc service and fi ([#87](https://github.com/8xFF/atm0s-sdn/pull/87))
2 changes: 1 addition & 1 deletion packages/services/rpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ parking_lot = { workspace = true }
async-std = { workspace = true }
serde = { workspace = true }
log = { workspace = true }
bincode = { workspace = true }
bincode = { workspace = true }
5 changes: 5 additions & 0 deletions packages/services/tun_tap/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-tun-tap-v0.1.1...atm0s-sdn-tun-tap-v0.1.2) - 2023-12-11

### Added
- rpc service and fi ([#87](https://github.com/8xFF/atm0s-sdn/pull/87))

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

### Other
Expand Down
2 changes: 1 addition & 1 deletion packages/services/tun_tap/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "atm0s-sdn-tun-tap"
version = "0.1.1"
version = "0.1.2"
edition = "2021"
description = "Tun/Tap service in atm0s-sdn"
license = "MIT"
Expand Down
5 changes: 5 additions & 0 deletions packages/transports/tcp/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-transport-tcp-v0.1.1...atm0s-sdn-transport-tcp-v0.1.2) - 2023-12-11

### Added
- rpc service and fi ([#87](https://github.com/8xFF/atm0s-sdn/pull/87))

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

### Other
Expand Down
2 changes: 1 addition & 1 deletion packages/transports/tcp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "atm0s-sdn-transport-tcp"
version = "0.1.1"
version = "0.1.2"
edition = "2021"
description = "TCP Transport in atm0s-sdn"
license = "MIT"
Expand Down
5 changes: 5 additions & 0 deletions packages/transports/vnet/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-transport-vnet-v0.1.1...atm0s-sdn-transport-vnet-v0.1.2) - 2023-12-11

### Added
- rpc service and fi ([#87](https://github.com/8xFF/atm0s-sdn/pull/87))

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

### Other
Expand Down
2 changes: 1 addition & 1 deletion packages/transports/vnet/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "atm0s-sdn-transport-vnet"
version = "0.1.1"
version = "0.1.2"
edition = "2021"
description = "Vitual Network Transport in atm0s-sdn"
license = "MIT"
Expand Down

0 comments on commit 7f98a84

Please sign in to comment.