diff --git a/crates/ruma-state-res/CHANGELOG.md b/crates/ruma-state-res/CHANGELOG.md index c6326239..58c4bdf3 100644 --- a/crates/ruma-state-res/CHANGELOG.md +++ b/crates/ruma-state-res/CHANGELOG.md @@ -1,9 +1,12 @@ # [unreleased] +# 0.3.0 + Breaking changes: * state_res::resolve auth_events type has been slightly changed and renamed to auth_chain_sets * state_res::resolve structs were changed from BTreeMap/Set to HashMap/Set +* Upgrade dependencies # 0.2.0 diff --git a/crates/ruma-state-res/Cargo.toml b/crates/ruma-state-res/Cargo.toml index d9e5b19c..67fbe802 100644 --- a/crates/ruma-state-res/Cargo.toml +++ b/crates/ruma-state-res/Cargo.toml @@ -8,7 +8,7 @@ homepage = "https://www.ruma.io/" repository = "https://github.com/ruma/ruma" readme = "README.md" license = "MIT" -version = "0.2.0" +version = "0.3.0" edition = "2018" [package.metadata.docs.rs] diff --git a/crates/ruma/Cargo.toml b/crates/ruma/Cargo.toml index 4ee94e4d..a5afdce8 100644 --- a/crates/ruma/Cargo.toml +++ b/crates/ruma/Cargo.toml @@ -126,7 +126,7 @@ ruma-serde = { version = "0.5.0", path = "../ruma-serde" } ruma-client = { version = "0.6.0", path = "../ruma-client", optional = true } ruma-events = { version = "0.24.0", path = "../ruma-events", optional = true } ruma-signatures = { version = "0.9.0", path = "../ruma-signatures", optional = true } -ruma-state-res = { version = "0.2.0", path = "../ruma-state-res", optional = true } +ruma-state-res = { version = "0.3.0", path = "../ruma-state-res", optional = true } ruma-api = { version = "0.18.1", path = "../ruma-api", optional = true } ruma-appservice-api = { version = "0.4.0", path = "../ruma-appservice-api", optional = true }