diff --git a/CHANGELOG.md b/CHANGELOG.md index 7bacd530..6e77ad9f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ # [unreleased] +# 0.21.0 + Breaking changes: * Replace `EventResult` with a new construct, `EventJson` diff --git a/Cargo.toml b/Cargo.toml index 906aa895..c5bb3492 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,13 +9,13 @@ license = "MIT" name = "ruma-events" readme = "README.md" repository = "https://github.com/ruma/ruma-events" -version = "0.21.0-beta.1" +version = "0.21.0" edition = "2018" [dependencies] js_int = { version = "0.1.5", features = ["serde"] } ruma-common = "0.1.1" -ruma-events-macros = { path = "ruma-events-macros", version = "=0.21.0-beta.1" } +ruma-events-macros = { path = "ruma-events-macros", version = "=0.21.0" } ruma-identifiers = "0.16.1" ruma-serde = "0.1.3" serde = { version = "1.0.106", features = ["derive"] } diff --git a/ruma-events-macros/Cargo.toml b/ruma-events-macros/Cargo.toml index a5db1058..a3462db7 100644 --- a/ruma-events-macros/Cargo.toml +++ b/ruma-events-macros/Cargo.toml @@ -10,7 +10,7 @@ license = "MIT" name = "ruma-events-macros" readme = "README.md" repository = "https://github.com/ruma/ruma-api-macros" -version = "0.21.0-beta.1" +version = "0.21.0" [dependencies] syn = { version = "1.0.18", features = ["full"] }