Update dependencies, changelog; bump version

This commit is contained in:
Jonas Platte 2020-02-08 22:28:34 +01:00
parent 1e88e3f90c
commit 604795f994
No known key found for this signature in database
GPG Key ID: 7D261D771D915378
2 changed files with 10 additions and 7 deletions

View File

@ -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

View File

@ -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"] }