From 604795f99454bf178c3209d6bc16ed220935a622 Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Sat, 8 Feb 2020 22:28:34 +0100 Subject: [PATCH] Update dependencies, changelog; bump version --- CHANGELOG.md | 7 +++++-- Cargo.toml | 10 +++++----- 2 files changed, 10 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 36431c69..1283cfb7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,11 @@ # [unreleased] +# 0.6.0 + Breaking changes: -* Remove presence list endpoints `r0::presence::{get_subscribed_presences, update_presence_subscriptions}` (removed in 0.5.0) +* Update ruma-api to 0.13.0 +* Remove presence list endpoints `r0::presence::{get_subscribed_presences, update_presence_subscriptions}` (removed in r0.5.0) * Refactor `r0::send` endpoints and remove module: * Move `r0::send::send_message_event` to `r0::message::create_message_event` * Move `r0::send::send_state_event_for_empty_key` to `r0::state:create_state_event_for_empty_key` @@ -38,7 +41,7 @@ Improvements: * Add `r0::account::delete_3pid` * Add `r0::account::unbind_3pid` * Add `r0::push` endpoints -* Add `r0::room::upgrade_room` (introduced upstream in 0.5.0) +* Add `r0::room::upgrade_room` (introduced upstream in r0.5.0) # 0.5.0 diff --git a/Cargo.toml b/Cargo.toml index d7da2448..67eb4225 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,9 +14,9 @@ edition = "2018" [dependencies] js_int = { version = "0.1.2", features = ["serde"] } -ruma-api = "0.12.1" +ruma-api = "0.13.0" ruma-events = "0.15.1" -ruma-identifiers = "0.14.0" -serde = { version = "1.0.103", features = ["derive"] } -serde_json = "1.0.42" -url = { version = "2.1.0", features = ["serde"] } +ruma-identifiers = "0.14.1" +serde = { version = "1.0.104", features = ["derive"] } +serde_json = "1.0.47" +url = { version = "2.1.1", features = ["serde"] }