diff --git a/CHANGELOG.md b/CHANGELOG.md index 6ecdfa6..927fd95 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [v0.3.0] + ### Added - Multiple Kafka output drivers that connect to the same Kafka cluster can use a single Kafka client (#155) diff --git a/Cargo.lock b/Cargo.lock index 03e33d6..ceb7ff4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -391,7 +391,7 @@ checksum = "4b82cf0babdbd58558212896d1a4272303a57bdb245c2bf1147185fb45640e70" [[package]] name = "cli" -version = "0.2.1" +version = "0.3.0" dependencies = [ "anyhow", "chrono", @@ -438,7 +438,7 @@ dependencies = [ [[package]] name = "common" -version = "0.2.1" +version = "0.3.0" dependencies = [ "anyhow", "async-trait", @@ -2064,7 +2064,7 @@ dependencies = [ [[package]] name = "server" -version = "0.2.1" +version = "0.3.0" dependencies = [ "anyhow", "async-trait", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index b903f64..5bf02a8 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cli" -version = "0.2.1" +version = "0.3.0" edition = "2021" [[bin]] diff --git a/common/Cargo.toml b/common/Cargo.toml index e3dc354..3a4f9a7 100644 --- a/common/Cargo.toml +++ b/common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "common" -version = "0.2.1" +version = "0.3.0" edition = "2021" # Used by cargo-deb homepage = "https://github.com/cea-sec/openwec" diff --git a/server/Cargo.toml b/server/Cargo.toml index f9f95d3..e5354c2 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "server" -version = "0.2.1" +version = "0.3.0" edition = "2021" [[bin]]