diff --git a/crates/ruma/CHANGELOG.md b/crates/ruma/CHANGELOG.md index f4aa8724..d2a4bfca 100644 --- a/crates/ruma/CHANGELOG.md +++ b/crates/ruma/CHANGELOG.md @@ -1,5 +1,15 @@ # [unreleased] +# 0.6.2 + +Improvements: + +* Add `StrippedPowerLevelsEvent::power_levels` +* Add (`Sync`)`RoomMemberEvent::membership` +* Export `events::room::member::Change` + * Prior to this, you couldn't actually do anything with the + `membership_change` functions on various member event types + # 0.6.1 Improvements: diff --git a/crates/ruma/Cargo.toml b/crates/ruma/Cargo.toml index 795da838..3272231f 100644 --- a/crates/ruma/Cargo.toml +++ b/crates/ruma/Cargo.toml @@ -7,7 +7,7 @@ homepage = "https://www.ruma.io/" repository = "https://github.com/ruma/ruma" readme = "README.md" license = "MIT" -version = "0.6.1" +version = "0.6.2" edition = "2018" [package.metadata.docs.rs] diff --git a/examples/hello_isahc/Cargo.toml b/examples/hello_isahc/Cargo.toml index e00e6b38..54c91ff6 100644 --- a/examples/hello_isahc/Cargo.toml +++ b/examples/hello_isahc/Cargo.toml @@ -5,7 +5,7 @@ edition = "2018" publish = false [dependencies] -ruma = { version = "0.6.1", path = "../../crates/ruma", features = ["client-api-c", "client-ext-client-api", "client-isahc", "rand"] } +ruma = { version = "0.6.2", path = "../../crates/ruma", features = ["client-api-c", "client-ext-client-api", "client-isahc", "rand"] } anyhow = "1.0.37" isahc = "1.3.1" diff --git a/examples/hello_world/Cargo.toml b/examples/hello_world/Cargo.toml index d1ca74f9..463d7da4 100644 --- a/examples/hello_world/Cargo.toml +++ b/examples/hello_world/Cargo.toml @@ -5,7 +5,7 @@ edition = "2018" publish = false [dependencies] -ruma = { version = "0.6.1", path = "../../crates/ruma", features = ["client-api-c", "client-ext-client-api", "client-hyper-native-tls", "rand"] } +ruma = { version = "0.6.2", path = "../../crates/ruma", features = ["client-api-c", "client-ext-client-api", "client-hyper-native-tls", "rand"] } anyhow = "1.0.37" tokio = { version = "1.0.1", features = ["macros", "rt"] } diff --git a/examples/joke_bot/Cargo.toml b/examples/joke_bot/Cargo.toml index 0a2dc276..1eeab2db 100644 --- a/examples/joke_bot/Cargo.toml +++ b/examples/joke_bot/Cargo.toml @@ -5,7 +5,7 @@ edition = "2018" publish = false [dependencies] -ruma = { version = "0.6.1", path = "../../crates/ruma", features = ["client-api-c", "client-ext-client-api", "client-hyper-native-tls", "rand"] } +ruma = { version = "0.6.2", path = "../../crates/ruma", features = ["client-api-c", "client-ext-client-api", "client-hyper-native-tls", "rand"] } # For building locally: use the git dependencies below. # Browse the source at this revision here: https://github.com/ruma/ruma/tree/f161c8117c706fc52089999e1f406cf34276ec9d # ruma = { git = "https://github.com/ruma/ruma", rev = "f161c8117c706fc52089999e1f406cf34276ec9d", features = ["client-api-c", "client", "client-hyper-native-tls", "events"] } diff --git a/examples/message_log/Cargo.toml b/examples/message_log/Cargo.toml index 6077422e..3326e544 100644 --- a/examples/message_log/Cargo.toml +++ b/examples/message_log/Cargo.toml @@ -5,7 +5,7 @@ edition = "2018" publish = false [dependencies] -ruma = { version = "0.6.1", path = "../../crates/ruma", features = ["client-api-c", "client-ext-client-api", "client-hyper-native-tls"] } +ruma = { version = "0.6.2", path = "../../crates/ruma", features = ["client-api-c", "client-ext-client-api", "client-hyper-native-tls"] } anyhow = "1.0.37" assign = "1.1.1"