Skip to content

Commit

Permalink
Bump all versions to sync with release branch
Browse files Browse the repository at this point in the history
  • Loading branch information
petehayes102 committed May 6, 2024
1 parent 9795380 commit 09c8230
Show file tree
Hide file tree
Showing 11 changed files with 52 additions and 12 deletions.
10 changes: 5 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions client/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,12 @@
- Add closure so client can gracefully handle replier errors
- Add CA certificate
- Bug fix for Selium Cloud

## v0.4.0

- Add `tracing` lib to improve visibility
- Improve and customise keepalive semantics for each stream type

## v0.5.0

- Implemented Message Retention and Replay functionality to pubsub clients
4 changes: 2 additions & 2 deletions client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "selium"
version = "0.3.1"
version = "0.5.0"
description = """
An extremely developer friendly, composable messaging platform with zero build
time configuration.
Expand All @@ -25,7 +25,7 @@ futures = "0.3"
quinn = "0.10"
rustls = "0.21"
rustls-pemfile = "1.0"
selium-protocol = { version = "0.2", path = "../protocol" }
selium-protocol = { version = "0.4", path = "../protocol" }
selium-std = { version = "0.2", path = "../standard" }
tokio = { version = "1.34", features = ["full"] }
tracing = "0.1"
Expand Down
5 changes: 5 additions & 0 deletions log/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# CHANGELOG

## v0.1.0

- Initial release of Selium Log
9 changes: 9 additions & 0 deletions protocol/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,12 @@
## v0.2.1

- Bug fix for Selium Cloud

## v0.3.0

- Improve error handling and reporting between clients and servers

## v0.4.0

- Updated Frame::BatchMessage payload to include batch length.
- Added Offset type to enable interoperability with Selium Log
2 changes: 1 addition & 1 deletion protocol/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "selium-protocol"
version = "0.2.1"
version = "0.4.0"
description = """
selium-protocol is a dependent crate of Selium. Do not use directly.
"""
Expand Down
9 changes: 9 additions & 0 deletions server/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,12 @@
- Remove openssl dependency
- Replace faulty Cloud certs
- Bug fixes for Selium Cloud

## v0.4.0

- Improve error reporting to client
- Fix race condition when replier stream rejoins topic, which could result in the replier being erroneously rejected

## v0.5.0

- Integrated Selium Log into pubsub broker
4 changes: 2 additions & 2 deletions server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "selium-server"
version = "0.3.1"
version = "0.5.0"
description = """
The server-side binary for Selium, an extremely developer friendly, composable
messaging platform with zero build time configuration.
Expand Down Expand Up @@ -32,7 +32,7 @@ quinn = "0.10"
rcgen = "0.11"
rustls = "0.21"
rustls-pemfile = "1.0"
selium-protocol = { version = "0.2", path = "../protocol" }
selium-protocol = { version = "0.4", path = "../protocol" }
selium-log = { version = "0.1", path = "../log" }
selium-std = { version = "0.2", path = "../standard", features = ["codec"] }
serde = { version = "1.0", features = ["derive"] }
Expand Down
8 changes: 8 additions & 0 deletions standard/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,11 @@

- Improve RequestHandlerFailure error
- Added BytesCodec to transmit raw bytes

## v0.2.2

- New error types

## v0.2.3

- Improved generic arguments for Codec traits
2 changes: 1 addition & 1 deletion standard/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "selium-std"
version = "0.2.1"
version = "0.2.3"
description = """
selium-std is a dependent crate of Selium. Do not use directly.
"""
Expand Down
2 changes: 1 addition & 1 deletion tests/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "selium-tests"
version = "0.2.1"
version = "0.3.0"
edition = "2021"

[dev-dependencies]
Expand Down

0 comments on commit 09c8230

Please sign in to comment.