diff --git a/crates/ruma-identity-service-api/CHANGELOG.md b/crates/ruma-identity-service-api/CHANGELOG.md index 3f72eb7e..70d71c6f 100644 --- a/crates/ruma-identity-service-api/CHANGELOG.md +++ b/crates/ruma-identity-service-api/CHANGELOG.md @@ -1,5 +1,7 @@ # [unreleased] +# 0.1.0 + * Add more endpoints: ```rust association::{ diff --git a/crates/ruma-identity-service-api/Cargo.toml b/crates/ruma-identity-service-api/Cargo.toml index 8201861d..7400babd 100644 --- a/crates/ruma-identity-service-api/Cargo.toml +++ b/crates/ruma-identity-service-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ruma-identity-service-api" -version = "0.1.0-alpha.1" +version = "0.1.0" authors = ["Jonas Platte "] description = "Types for the endpoints in the Matrix identity service API." homepage = "https://www.ruma.io/" diff --git a/crates/ruma/Cargo.toml b/crates/ruma/Cargo.toml index 39f1d82d..c2a48459 100644 --- a/crates/ruma/Cargo.toml +++ b/crates/ruma/Cargo.toml @@ -32,7 +32,7 @@ ruma-api = { version = "0.17.0", path = "../ruma-api", optional = true } ruma-appservice-api = { version = "0.2.0", path = "../ruma-appservice-api", optional = true } ruma-client-api = { version = "0.10.0", path = "../ruma-client-api", optional = true } ruma-federation-api = { version = "0.1.0", path = "../ruma-federation-api", optional = true } -ruma-identity-service-api = { version = "=0.1.0-alpha.1", path = "../ruma-identity-service-api", optional = true } +ruma-identity-service-api = { version = "0.1.0", path = "../ruma-identity-service-api", optional = true } ruma-push-gateway-api = { version = "=0.1.0-alpha.1", path = "../ruma-push-gateway-api", optional = true } [dev-dependencies]