Skip to content

Commit 0ef6e2d

Browse files
committed
chore(version): 0.3.2
1 parent 7107ed8 commit 0ef6e2d

File tree

7 files changed

+32
-14
lines changed

7 files changed

+32
-14
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,24 @@
22
All notable changes to this project will be documented in this file. See [conventional commits](https://www.conventionalcommits.org/) for commit guidelines.
33

44
- - -
5+
## [0.3.2](https://github.com/thalo-rs/thalo/compare/0.3.1..0.3.2) - 2021-12-27
6+
#### Build system
7+
- **(thalo)** add feature flags in documentation - ([055d15d](https://github.com/thalo-rs/thalo/commit/055d15d2f6fe1486e2f488f6a55354cf1baa219b)) - [@tqwewe](https://github.com/tqwewe)
8+
- remove delay between publishing packages - ([823699d](https://github.com/thalo-rs/thalo/commit/823699de1eccefb3f73cffc29b7aab6d2a9b1917)) - [@tqwewe](https://github.com/tqwewe)
9+
#### Features
10+
- **(thalo)** add `Item` associated type to `EventStream` - ([b9484e5](https://github.com/thalo-rs/thalo/commit/b9484e563bd1d8536a18d6c36cf657181f0f7fde)) - [@tqwewe](https://github.com/tqwewe)
11+
- **(thalo-kafka)** add `KafkaEventStream::watch_event_handler` method to handle event handlers - ([c7c1c16](https://github.com/thalo-rs/thalo/commit/c7c1c16eec8e42546daf8c47626596c8347da2fc)) - [@tqwewe](https://github.com/tqwewe)
12+
- **(thalo-kafka)** add `auto.offset.reset=earliest` to recommended kafka config - ([eb65b95](https://github.com/thalo-rs/thalo/commit/eb65b95b10b70c911579fa3da6bbbde91b64f0f5)) - [@tqwewe](https://github.com/tqwewe)
13+
- **(thalo-kafka)** add `Clone`, `Debug` derives to `KafkaClientConfig` - ([eb4a5ee](https://github.com/thalo-rs/thalo/commit/eb4a5eee902e6e008a13f5a3cd0020f1ae6722a6)) - [@tqwewe](https://github.com/tqwewe)
14+
- **(thalo-kafka)** add `KafkaEventStream::consumer` - ([960461d](https://github.com/thalo-rs/thalo/commit/960461db3881c9a0b75e9e45e91e31767d0a79ff)) - [@tqwewe](https://github.com/tqwewe)
15+
- **(thalo-kafka)** add `KafkaEventMessage` - ([6d5fc66](https://github.com/thalo-rs/thalo/commit/6d5fc66dc234d2346172d86cd6d511e144deb3d6)) - [@tqwewe](https://github.com/tqwewe)
16+
- **(thalo-kafka)** take items that implement `fmt::Display` for `KafkaEventStream::new` - ([a2ce28b](https://github.com/thalo-rs/thalo/commit/a2ce28b74b4d0675e4c4b88848b3bbba8109fb99)) - [@tqwewe](https://github.com/tqwewe)
17+
#### Miscellaneous Chores
18+
- merge branch 'dev' - ([7107ed8](https://github.com/thalo-rs/thalo/commit/7107ed8c5066c5bf1b01c32e484a590993408715)) - [@tqwewe](https://github.com/tqwewe)
19+
- merge branch 'main' into dev - ([6ed6047](https://github.com/thalo-rs/thalo/commit/6ed6047b4735c6398009566aa9244b48827bf46f)) - [@tqwewe](https://github.com/tqwewe)
20+
- merge branch 'dev' - ([0d79eab](https://github.com/thalo-rs/thalo/commit/0d79eab51ab9ed2ad940e0ca28db33e2c048af0c)) - [@tqwewe](https://github.com/tqwewe)
21+
- - -
22+
523
## [0.3.1](https://github.com/thalo-rs/thalo/compare/0.3.0..0.3.1) - 2021-12-27
624
#### Bug Fixes
725
- **(examples/protobuf)** unwrap result of event stream - ([c009315](https://github.com/thalo-rs/thalo/commit/c00931555bb04e656d07e479a0247523eb08ca1c)) - [@tqwewe](https://github.com/tqwewe)

Cargo.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

thalo-inmemory/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "thalo-inmemory"
3-
version = "0.3.1"
3+
version = "0.3.2"
44
authors = ["Ari Seyhun <ariseyhun@live.com.au>"]
55
edition = "2021"
66
description = "In-memory event store for crates.io/thalo"
@@ -22,7 +22,7 @@ chrono = "0.4"
2222
prettytable-rs = { version = "0.8", optional = true }
2323
serde = "1.0"
2424
serde_json = "1.0"
25-
thalo = { version = "0.3.1", path = "../thalo", features = [
25+
thalo = { version = "0.3.2", path = "../thalo", features = [
2626
"event-store",
2727
"tests-cfg",
2828
] }

thalo-kafka/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "thalo-kafka"
3-
version = "0.3.1"
3+
version = "0.3.2"
44
authors = ["Ari Seyhun <ariseyhun@live.com.au>"]
55
edition = "2021"
66
description = "Kafka event stream for crates.io/thalo"
@@ -22,6 +22,6 @@ futures-util = "0.3"
2222
rdkafka = "0.28"
2323
serde = "1.0"
2424
serde_json = "1.0"
25-
thalo = { version = "0.3.1", path = "../thalo", features = ["event-stream"] }
25+
thalo = { version = "0.3.2", path = "../thalo", features = ["event-stream"] }
2626
thiserror = "1.0"
2727
tracing = "0.1"

thalo-macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "thalo-macros"
3-
version = "0.3.1"
3+
version = "0.3.2"
44
authors = ["Ari Seyhun <ariseyhun@live.com.au>"]
55
edition = "2021"
66
description = "Macros for crates.io/thalo"

thalo-postgres/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "thalo-postgres"
3-
version = "0.3.1"
3+
version = "0.3.2"
44
authors = ["Ari Seyhun <ariseyhun@live.com.au>"]
55
edition = "2021"
66
description = "Postgres event store for crates.io/thalo"
@@ -25,7 +25,7 @@ bb8-postgres = { version = "0.7", features = [
2525
] }
2626
serde = "1.0"
2727
serde_json = "1.0"
28-
thalo = { version = "0.3.1", path = "../thalo", features = [
28+
thalo = { version = "0.3.2", path = "../thalo", features = [
2929
"event-store",
3030
"tests-cfg",
3131
] }

thalo/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "thalo"
3-
version = "0.3.1"
3+
version = "0.3.2"
44
authors = ["Ari Seyhun <ariseyhun@live.com.au>"]
55
edition = "2021"
66
description = "Event sourcing for microservices"
@@ -23,7 +23,7 @@ chrono = { version = "0.4", features = ["serde"] }
2323
futures-util = { version = "0.3", optional = true }
2424
prettytable-rs = { version = "0.8", optional = true }
2525
serde = { version = "1.0", features = ["derive"] }
26-
thalo-macros = { version = "0.3.1", path = "../thalo-macros", optional = true }
26+
thalo-macros = { version = "0.3.2", path = "../thalo-macros", optional = true }
2727
thiserror = { version = "1.0", optional = true }
2828
tokio-stream = { version = "0.1", features = ["sync"], optional = true }
2929
tonic = { version = "0.6", default-features = false, optional = true }

0 commit comments

Comments
 (0)