Skip to content

Commit

Permalink
chore: release (#122)
Browse files Browse the repository at this point in the history
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] authored Dec 28, 2023
1 parent 9f3abf8 commit a5c4c44
Show file tree
Hide file tree
Showing 7 changed files with 40 additions and 10 deletions.
6 changes: 3 additions & 3 deletions Cargo.lock

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

10 changes: 10 additions & 0 deletions eventsourced-nats/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.12.0](https://github.com/hseeberger/eventsourced/compare/eventsourced-nats-v0.11.0...eventsourced-nats-v0.12.0) - 2023-12-28

### Added
- no longer support tagging ([#116](https://github.com/hseeberger/eventsourced/pull/116))
- add logging and tracing ([#114](https://github.com/hseeberger/eventsourced/pull/114))
- use NonZeroU64 instead of SeqNo ([#111](https://github.com/hseeberger/eventsourced/pull/111))

### Fixed
- hydrate entities / evtlog after seq_no ([#120](https://github.com/hseeberger/eventsourced/pull/120))

## [0.10.0](https://github.com/hseeberger/eventsourced/compare/eventsourced-nats-v0.9.0...eventsourced-nats-v0.10.0) - 2023-12-20

### Added
Expand Down
6 changes: 3 additions & 3 deletions eventsourced-nats/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "eventsourced-nats"
description = "NATS implementation for EventSourced EvtLog and SnapshotStore."
version = "0.11.0"
version = "0.12.0"
readme = "README.md"
edition = { workspace = true }
authors = { workspace = true }
Expand All @@ -11,7 +11,7 @@ repository = { workspace = true }
documentation = "https://docs.rs/eventsourced-nats/latest/eventsourced-nats"

[dependencies]
eventsourced = { path = "../eventsourced", version = "0.11.0" }
eventsourced = { path = "../eventsourced", version = "0.12.0" }
async-nats = { workspace = true }
bytes = { workspace = true }
futures = { workspace = true }
Expand All @@ -23,7 +23,7 @@ tokio = { workspace = true }
tracing = { workspace = true }

[dev-dependencies]
eventsourced = { path = "../eventsourced", version = "0.11.0", features = [ "prost" ] }
eventsourced = { path = "../eventsourced", version = "0.12.0", features = [ "prost" ] }
prost = { workspace = true }
testcontainers = { workspace = true }
testcontainers-modules = { workspace = true }
Expand Down
10 changes: 10 additions & 0 deletions eventsourced-postgres/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.12.0](https://github.com/hseeberger/eventsourced/compare/eventsourced-postgres-v0.11.0...eventsourced-postgres-v0.12.0) - 2023-12-28

### Added
- no longer support tagging ([#116](https://github.com/hseeberger/eventsourced/pull/116))
- add logging and tracing ([#114](https://github.com/hseeberger/eventsourced/pull/114))
- use NonZeroU64 instead of SeqNo ([#111](https://github.com/hseeberger/eventsourced/pull/111))

### Fixed
- hydrate entities / evtlog after seq_no ([#120](https://github.com/hseeberger/eventsourced/pull/120))

## [0.10.0](https://github.com/hseeberger/eventsourced/compare/eventsourced-postgres-v0.9.0...eventsourced-postgres-v0.10.0) - 2023-12-20

### Added
Expand Down
6 changes: 3 additions & 3 deletions eventsourced-postgres/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "eventsourced-postgres"
description = "Postgres implementation for EventSourced EvtLog and SnapshotStore."
version = "0.11.0"
version = "0.12.0"
readme = "README.md"
edition = { workspace = true }
authors = { workspace = true }
Expand All @@ -11,7 +11,7 @@ repository = { workspace = true }
documentation = "https://docs.rs/eventsourced-postgres/latest/eventsourced-postgres"

[dependencies]
eventsourced = { path = "../eventsourced", version = "0.11.0" }
eventsourced = { path = "../eventsourced", version = "0.12.0" }
async-stream = { workspace = true }
bb8-postgres = { workspace = true }
bytes = { workspace = true }
Expand All @@ -24,7 +24,7 @@ tokio-postgres = { workspace = true }
tracing = { workspace = true }

[dev-dependencies]
eventsourced = { path = "../eventsourced", version = "0.11.0", features = [ "prost" ] }
eventsourced = { path = "../eventsourced", version = "0.12.0", features = [ "prost" ] }
prost = { workspace = true }
testcontainers = { workspace = true }
testcontainers-modules = { workspace = true }
Expand Down
10 changes: 10 additions & 0 deletions eventsourced/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.12.0](https://github.com/hseeberger/eventsourced/compare/eventsourced-v0.11.0...eventsourced-v0.12.0) - 2023-12-28

### Added
- no longer support tagging ([#116](https://github.com/hseeberger/eventsourced/pull/116))
- add logging and tracing ([#114](https://github.com/hseeberger/eventsourced/pull/114))
- use NonZeroU64 instead of SeqNo ([#111](https://github.com/hseeberger/eventsourced/pull/111))

### Fixed
- hydrate entities / evtlog after seq_no ([#120](https://github.com/hseeberger/eventsourced/pull/120))

## [0.10.0](https://github.com/hseeberger/eventsourced/compare/eventsourced-v0.9.0...eventsourced-v0.10.0) - 2023-12-20

### Added
Expand Down
2 changes: 1 addition & 1 deletion eventsourced/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "eventsourced"
description = "Event sourced entities in Rust."
version = "0.11.0"
version = "0.12.0"
readme = "README.md"
edition = { workspace = true }
authors = { workspace = true }
Expand Down

0 comments on commit a5c4c44

Please sign in to comment.