Skip to content

Commit

Permalink
bump the versions to test GitHub actions (#56)
Browse files Browse the repository at this point in the history
* bump the versions to test github actions

* use netcat-openbsd instead of netcat
  • Loading branch information
danrusei authored Jan 6, 2025
1 parent 67869a0 commit 42635dc
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pull-request-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
run: sudo apt-get update && sudo apt-get install -y protobuf-compiler

- name: Install Netcat
run: sudo apt-get install -y netcat
run: sudo apt-get install -y netcat-openbsd

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Danube

Danube is an open-source distributed Pub/Sub messaging platform (inspired by Apache Pulsar).
Danube is an open-source distributed Messaging Broker platform (inspired by Apache Pulsar).
Danube is designed for high-performance and scalable message queueing, suitable for event-driven applications. It supports both message queueing and fan-out pub-sub systems, making it versatile for various use cases.

Check-out [the Docs](https://danube-docs.dev-state.com/) for more details of the Danube Architecture and the supported concepts.
Expand Down
2 changes: 1 addition & 1 deletion danube-admin-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "danube-admin-cli"
version = "0.1.5"
version = "0.1.6"
edition = "2021"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion danube-broker/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "danube-broker"
version = "0.2.0"
version = "0.2.1"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
2 changes: 1 addition & 1 deletion danube-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "danube-cli"
version = "0.2.0"
version = "0.2.1"
edition = "2021"

[dependencies]
Expand Down
4 changes: 2 additions & 2 deletions danube-client/README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Danube-client

An async Rust client library for interacting with Danube Pub/Sub messaging platform.
An async Rust client library for interacting with Danube Messaging platform.

[Danube](https://github.com/danube-messaging/danube) is an open-source **distributed** Pub/Sub messaging platform written in Rust. Consult [the documentation](https://danube-docs.dev-state.com/) for supported concepts and the platform architecture.
[Danube](https://github.com/danube-messaging/danube) is an open-source **distributed** Messaging Broker platform written in Rust. Consult [the documentation](https://danube-docs.dev-state.com/) for supported concepts and the platform architecture.

## Example usage

Expand Down
2 changes: 1 addition & 1 deletion danube-metadata-store/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "danube-metadata-store"
version = "0.1.2"
version = "0.1.4"
edition = "2021"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion danube-reliable-dispatch/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "danube-reliable-dispatch"
version = "0.1.2"
version = "0.1.4"
edition = "2021"

[dependencies]
Expand Down

0 comments on commit 42635dc

Please sign in to comment.