diff --git a/CHANGELOG.md b/CHANGELOG.md index cd0436e9..88d6026b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog and versioning +## 0.1.114 + +### Various fixes & improvements + +- feat(crons): Add mark_unknown clock task (#340) by @evanpurkhiser +- feat(crons): Add `volume_anomaly_result` to mark_missing task (#341) by @evanpurkhiser +- fix(crons): Switch to `enum` as a shape Discriminator in clock tasks (#342) by @evanpurkhiser +- feat(crons): Add "volume_anomaly_result" result to clock-tick (#339) by @evanpurkhiser + ## 0.1.113 ### Various fixes & improvements diff --git a/Cargo.toml b/Cargo.toml index 302be3f8..e70bd10b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ authors = ["Sentry "] description = "Kafka topics and schemas for Sentry" repository = "https://github.com/getsentry/sentry-kafka-schemas" license-file = "./LICENSE.md" -version = "0.1.113" +version = "0.1.114" edition = "2021" build = "rust/build.rs" diff --git a/setup.py b/setup.py index 5c831b24..781c8a88 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ def get_requirements() -> Sequence[str]: setup( name="sentry-kafka-schemas", - version="0.1.113", + version="0.1.114", author="Sentry", author_email="oss@sentry.io", url="https://github.com/getsentry/sentry-kafka-schemas",