Skip to content

Commit

Permalink
chore: release agent v0.3.0 and relay v0.5.0 (#91)
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 Feb 14, 2025
1 parent d7082c9 commit eeed145
Show file tree
Hide file tree
Showing 9 changed files with 31 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ members = [

[workspace.dependencies]
p2p = { package = "atm0s-small-p2p", version = "0.2" }
protocol = { path = "crates/protocol", package = "atm0s-reverse-proxy-protocol", version = "0.3.0" }
protocol-ed25519 = { path = "crates/protocol_ed25519", package = "atm0s-reverse-proxy-protocol-ed25519", version = "0.1.4" }
protocol = { path = "crates/protocol", package = "atm0s-reverse-proxy-protocol", version = "0.3.1" }
protocol-ed25519 = { path = "crates/protocol_ed25519", package = "atm0s-reverse-proxy-protocol-ed25519", version = "0.1.5" }

log = "0.4"
tokio-yamux = "0.3"
Expand Down
6 changes: 6 additions & 0 deletions bin/agent/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.3.0](https://github.com/8xFF/atm0s-reverse-proxy/compare/atm0s-reverse-proxy-agent-v0.2.2...atm0s-reverse-proxy-agent-v0.3.0) - 2025-02-14

### Added

- turn tcp/quic into features in agent, optimize client binary size (#87)

## [0.2.2](https://github.com/8xFF/atm0s-reverse-proxy/compare/atm0s-reverse-proxy-agent-v0.2.1...atm0s-reverse-proxy-agent-v0.2.2) - 2024-11-11

### Other
Expand Down
4 changes: 2 additions & 2 deletions bin/agent/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "atm0s-reverse-proxy-agent"
version = "0.2.2"
version = "0.3.0"
edition = "2021"
description = "Agent for reverse proxy cluster"
license = "MIT"
Expand Down Expand Up @@ -36,4 +36,4 @@ base64 = { workspace = true, optional = true }
default = ["binary", "tcp"]
binary = ["protocol-ed25519", "argh", "picolog"]
tcp = ["tokio-yamux"]
quic = ["quinn", "rustls", "base64", "thiserror"]
quic = ["quinn", "rustls", "base64", "thiserror"]
6 changes: 6 additions & 0 deletions bin/relayer/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.5.0](https://github.com/8xFF/atm0s-reverse-proxy/compare/atm0s-reverse-proxy-relayer-v0.4.4...atm0s-reverse-proxy-relayer-v0.5.0) - 2025-02-14

### Added

- add agent context uses in forward from agent to service (#90)

## [0.4.4](https://github.com/8xFF/atm0s-reverse-proxy/compare/atm0s-reverse-proxy-relayer-v0.4.3...atm0s-reverse-proxy-relayer-v0.4.4) - 2024-12-18

### Other
Expand Down
2 changes: 1 addition & 1 deletion bin/relayer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "atm0s-reverse-proxy-relayer"
version = "0.4.4"
version = "0.5.0"
edition = "2021"
description = "Server for atm0s-reverse proxy cluster"
license = "MIT"
Expand Down
6 changes: 6 additions & 0 deletions crates/protocol/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.3.1](https://github.com/8xFF/atm0s-reverse-proxy/compare/atm0s-reverse-proxy-protocol-v0.3.0...atm0s-reverse-proxy-protocol-v0.3.1) - 2025-02-14

### Added

- add agent context uses in forward from agent to service (#90)

## [0.3.0](https://github.com/8xFF/atm0s-reverse-proxy/compare/atm0s-reverse-proxy-protocol-v0.2.1...atm0s-reverse-proxy-protocol-v0.3.0) - 2024-10-22

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion crates/protocol/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "atm0s-reverse-proxy-protocol"
version = "0.3.0"
version = "0.3.1"
edition = "2021"
description = "Protocol for atm0s-reverse proxy cluster"
license = "MIT"
Expand Down
6 changes: 6 additions & 0 deletions crates/protocol_ed25519/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.1.5](https://github.com/8xFF/atm0s-reverse-proxy/compare/atm0s-reverse-proxy-protocol-ed25519-v0.1.4...atm0s-reverse-proxy-protocol-ed25519-v0.1.5) - 2025-02-14

### Added

- add agent context uses in forward from agent to service (#90)

## [0.1.4](https://github.com/8xFF/atm0s-reverse-proxy/compare/atm0s-reverse-proxy-protocol-ed25519-v0.1.3...atm0s-reverse-proxy-protocol-ed25519-v0.1.4) - 2024-10-22

### Other
Expand Down
2 changes: 1 addition & 1 deletion crates/protocol_ed25519/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "atm0s-reverse-proxy-protocol-ed25519"
version = "0.1.4"
version = "0.1.5"
edition = "2021"
description = "Protocol implement with Ed25519 for atm0s-reverse proxy cluster"
license = "MIT"
Expand Down

0 comments on commit eeed145

Please sign in to comment.