Skip to content

Commit

Permalink
Prepare release 2023-09-12 (#176)
Browse files Browse the repository at this point in the history
* Update to 0.13.0

* Update sqlx version in readme to 0.7

* Update changelog
  • Loading branch information
cottinisimone authored Sep 12, 2023
1 parent cd97e5e commit fea2540
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 4 deletions.
15 changes: 14 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

---
## [0.13.0] - 2023-09-12

### Added

- [[#147]]: Event upcasting, available under `upcasting` feature flag, disabled by default.
- [[#164]]: Kafka messages are now published using the record key, set as the event `aggregate_id`.
- [[#175]]: Connection manager for RabbitMQ event bus to handle connection outages and fail-overs.

---
## [0.12.0] - 2023-06-09

Expand Down Expand Up @@ -276,7 +285,8 @@ Refer to: [#107], [#108] and [#109]
- Bump min version of supported Rust to 1.58 since <1.58 fails to resolve sqlx-core dep


[Unreleased]: https://github.com/primait/event_sourcing.rs/compare/0.12.0...HEAD
[Unreleased]: https://github.com/primait/event_sourcing.rs/compare/0.13.0...HEAD
[0.13.0]: https://github.com/primait/event_sourcing.rs/compare/0.12.0...0.13.0
[0.12.0]: https://github.com/primait/event_sourcing.rs/compare/0.11.0...0.12.0
[0.11.0]: https://github.com/primait/event_sourcing.rs/compare/0.10.2...0.11.0
[0.10.2]: https://github.com/primait/event_sourcing.rs/compare/0.10.1...0.10.2
Expand All @@ -289,6 +299,8 @@ Refer to: [#107], [#108] and [#109]
[0.6.2]: https://github.com/primait/event_sourcing.rs/compare/0.6.1...0.6.2


[#175]: https://github.com/primait/event_sourcing.rs/pull/175
[#164]: https://github.com/primait/event_sourcing.rs/pull/164
[#161]: https://github.com/primait/event_sourcing.rs/pull/161
[#157]: https://github.com/primait/event_sourcing.rs/pull/157
[#156]: https://github.com/primait/event_sourcing.rs/pull/156
Expand All @@ -299,6 +311,7 @@ Refer to: [#107], [#108] and [#109]
[#150]: https://github.com/primait/event_sourcing.rs/pull/150
[#149]: https://github.com/primait/event_sourcing.rs/pull/149
[#148]: https://github.com/primait/event_sourcing.rs/pull/148
[#147]: https://github.com/primait/event_sourcing.rs/pull/147
[#144]: https://github.com/primait/event_sourcing.rs/pull/144
[#141]: https://github.com/primait/event_sourcing.rs/pull/141
[#136]: https://github.com/primait/event_sourcing.rs/pull/136
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ name = "esrs"
readme = "README.md"
repository = "https://github.com/primait/event_sourcing.rs"
rust-version = "1.58.0"
version = "0.12.0"
version = "0.13.0"

[package.metadata.docs.rs]
all-features = true
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ Event Sourcing RS uses under the hood [`sqlx`].
# Cargo.toml
[dependencies]
# postgres database
esrs = { version = "0.12", features = ["postgres"] }
sqlx = { version = "0.6", features = ["postgres", "runtime-tokio-native-tls", "uuid", "json", "chrono"] }
esrs = { version = "0.13", features = ["postgres"] }
sqlx = { version = "0.7", features = ["postgres", "runtime-tokio-native-tls", "uuid", "json", "chrono"] }
```

## Tracing
Expand Down

0 comments on commit fea2540

Please sign in to comment.