Skip to content

Commit

Permalink
chore: merge branch 'main' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
tqwewe committed Jan 1, 2022
2 parents c5aa3c9 + 1555a71 commit 18b2820
Show file tree
Hide file tree
Showing 8 changed files with 32 additions and 18 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,20 @@
All notable changes to this project will be documented in this file. See [conventional commits](https://www.conventionalcommits.org/) for commit guidelines.

- - -
## [0.3.3](https://github.com/thalo-rs/thalo/compare/0.3.2..0.3.3) - 2021-12-28
#### Build system
- add thalo-testing to pre bump hook - ([738e011](https://github.com/thalo-rs/thalo/commit/738e0112bcc2b076ef3b69cf67dad633252a9741)) - [@tqwewe](https://github.com/tqwewe)
#### Documentation
- **(thalo)** add inconsistent missing periods - ([dc0b78a](https://github.com/thalo-rs/thalo/commit/dc0b78a7774d21b326547bcff09f0fe1186c04d4)) - [@tqwewe](https://github.com/tqwewe)
#### Features
- **(thalo-testing)** add package `thalo-testing` - ([bcf11a9](https://github.com/thalo-rs/thalo/commit/bcf11a9fa270cbcd32afb57b6454ef2876f8e10e)) - [@tqwewe](https://github.com/tqwewe)
#### Miscellaneous Chores
- merge branch 'dev' - ([5cae915](https://github.com/thalo-rs/thalo/commit/5cae915b342bf171b7c14f5407761c367b462a0a)) - [@tqwewe](https://github.com/tqwewe)
- merge branch 'main' into dev - ([4858067](https://github.com/thalo-rs/thalo/commit/48580671bf21fd7cfb04bd1f6b14795a4f659cd8)) - [@tqwewe](https://github.com/tqwewe)
- merge branch 'dev' - ([0f03acc](https://github.com/thalo-rs/thalo/commit/0f03acc5b8a4361d69a298cde8e21fb7fb3f369f)) - [@tqwewe](https://github.com/tqwewe)
- merge branch 'main' into dev - ([d94d279](https://github.com/thalo-rs/thalo/commit/d94d2795c128c9f7467a60c0026824a0038481dd)) - [@tqwewe](https://github.com/tqwewe)
- - -

## [0.3.2](https://github.com/thalo-rs/thalo/compare/0.3.1..0.3.2) - 2021-12-27
#### Build system
- **(thalo)** add feature flags in documentation - ([055d15d](https://github.com/thalo-rs/thalo/commit/055d15d2f6fe1486e2f488f6a55354cf1baa219b)) - [@tqwewe](https://github.com/tqwewe)
Expand Down
12 changes: 6 additions & 6 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions thalo-inmemory/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "thalo-inmemory"
version = "0.3.2"
version = "0.3.3"
authors = ["Ari Seyhun <[email protected]>"]
edition = "2021"
description = "In-memory event store for crates.io/thalo"
Expand All @@ -22,7 +22,7 @@ chrono = "0.4"
prettytable-rs = { version = "0.8", optional = true }
serde = "1.0"
serde_json = "1.0"
thalo = { version = "0.3.2", path = "../thalo", features = [
thalo = { version = "0.3.3", path = "../thalo", features = [
"event-store",
"tests-cfg",
] }
Expand Down
4 changes: 2 additions & 2 deletions thalo-kafka/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "thalo-kafka"
version = "0.3.2"
version = "0.3.3"
authors = ["Ari Seyhun <[email protected]>"]
edition = "2021"
description = "Kafka event stream for crates.io/thalo"
Expand All @@ -23,6 +23,6 @@ futures-util = "0.3"
rdkafka = "0.28"
serde = "1.0"
serde_json = "1.0"
thalo = { version = "0.3.2", path = "../thalo", features = ["event-stream"] }
thalo = { version = "0.3.3", path = "../thalo", features = ["event-stream"] }
thiserror = "1.0"
tracing = "0.1"
2 changes: 1 addition & 1 deletion thalo-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "thalo-macros"
version = "0.3.2"
version = "0.3.3"
authors = ["Ari Seyhun <[email protected]>"]
edition = "2021"
description = "Macros for crates.io/thalo"
Expand Down
4 changes: 2 additions & 2 deletions thalo-postgres/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "thalo-postgres"
version = "0.3.2"
version = "0.3.3"
authors = ["Ari Seyhun <[email protected]>"]
edition = "2021"
description = "Postgres event store for crates.io/thalo"
Expand All @@ -25,7 +25,7 @@ bb8-postgres = { version = "0.7", features = [
] }
serde = "1.0"
serde_json = "1.0"
thalo = { version = "0.3.2", path = "../thalo", features = [
thalo = { version = "0.3.3", path = "../thalo", features = [
"event-store",
"tests-cfg",
] }
Expand Down
6 changes: 3 additions & 3 deletions thalo-testing/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "thalo-testing"
version = "0.3.1"
version = "0.3.3"
authors = ["Ari Seyhun <[email protected]>"]
edition = "2021"
description = "Test utils for crates.io/thalo"
Expand All @@ -17,8 +17,8 @@ categories = [
]

[dependencies]
thalo = { version = "0.3.1", path = "../thalo" }
thalo = { version = "0.3.3", path = "../thalo" }

[dev-dependencies]
thalo = { version = "0.3.1", path = "../thalo", features = ["macros"] }
thalo = { version = "0.3.3", path = "../thalo", features = ["macros"] }
thiserror = "1.0"
4 changes: 2 additions & 2 deletions thalo/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "thalo"
version = "0.3.2"
version = "0.3.3"
authors = ["Ari Seyhun <[email protected]>"]
edition = "2021"
description = "Event sourcing for microservices"
Expand All @@ -23,7 +23,7 @@ chrono = { version = "0.4", features = ["serde"] }
futures-util = { version = "0.3", optional = true }
prettytable-rs = { version = "0.8", optional = true }
serde = { version = "1.0", features = ["derive"] }
thalo-macros = { version = "0.3.2", path = "../thalo-macros", optional = true }
thalo-macros = { version = "0.3.3", path = "../thalo-macros", optional = true }
thiserror = { version = "1.0", optional = true }
tokio-stream = { version = "0.1", features = ["sync"], optional = true }
tonic = { version = "0.6", default-features = false, optional = true }
Expand Down

0 comments on commit 18b2820

Please sign in to comment.