Skip to content

Commit eeed145

Browse files
chore: release agent v0.3.0 and relay v0.5.0 (#91)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent d7082c9 commit eeed145

File tree

9 files changed

+31
-7
lines changed

9 files changed

+31
-7
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ members = [
99

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

1515
log = "0.4"
1616
tokio-yamux = "0.3"

bin/agent/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [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
10+
11+
### Added
12+
13+
- turn tcp/quic into features in agent, optimize client binary size (#87)
14+
915
## [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
1016

1117
### Other

bin/agent/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "atm0s-reverse-proxy-agent"
3-
version = "0.2.2"
3+
version = "0.3.0"
44
edition = "2021"
55
description = "Agent for reverse proxy cluster"
66
license = "MIT"
@@ -36,4 +36,4 @@ base64 = { workspace = true, optional = true }
3636
default = ["binary", "tcp"]
3737
binary = ["protocol-ed25519", "argh", "picolog"]
3838
tcp = ["tokio-yamux"]
39-
quic = ["quinn", "rustls", "base64", "thiserror"]
39+
quic = ["quinn", "rustls", "base64", "thiserror"]

bin/relayer/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [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
10+
11+
### Added
12+
13+
- add agent context uses in forward from agent to service (#90)
14+
915
## [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
1016

1117
### Other

bin/relayer/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "atm0s-reverse-proxy-relayer"
3-
version = "0.4.4"
3+
version = "0.5.0"
44
edition = "2021"
55
description = "Server for atm0s-reverse proxy cluster"
66
license = "MIT"

crates/protocol/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [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
10+
11+
### Added
12+
13+
- add agent context uses in forward from agent to service (#90)
14+
915
## [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
1016

1117
### Fixed

crates/protocol/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "atm0s-reverse-proxy-protocol"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
edition = "2021"
55
description = "Protocol for atm0s-reverse proxy cluster"
66
license = "MIT"

crates/protocol_ed25519/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [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
10+
11+
### Added
12+
13+
- add agent context uses in forward from agent to service (#90)
14+
915
## [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
1016

1117
### Other

crates/protocol_ed25519/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "atm0s-reverse-proxy-protocol-ed25519"
3-
version = "0.1.4"
3+
version = "0.1.5"
44
edition = "2021"
55
description = "Protocol implement with Ed25519 for atm0s-reverse proxy cluster"
66
license = "MIT"

0 commit comments

Comments
 (0)