diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..e796b0e --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,16 @@ +# Changelog +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [0.0.2](https://github.com/hseeberger/evented/compare/v0.0.1...v0.0.2) - 2024-05-29 + +### Added +- event metadata ([#8](https://github.com/hseeberger/evented/pull/8)) + +### Other +- update deps ([#5](https://github.com/hseeberger/evented/pull/5)) +- Fix typo ([#4](https://github.com/hseeberger/evented/pull/4)) diff --git a/Cargo.lock b/Cargo.lock index e2647c1..e64bc07 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -469,7 +469,7 @@ checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" [[package]] name = "evented" -version = "0.0.1" +version = "0.0.2" dependencies = [ "error-ext", "futures", diff --git a/Cargo.toml b/Cargo.toml index 2fd445c..92a2eba 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "evented" -version = "0.0.1" +version = "0.0.2" edition = "2021" description = "Event Sourcing in Rust on top of PostgreSQL" authors = [ "Heiko Seeberger " ]