From 51b638d7a9680d078a9e596297dd1a92d8cd1c6b Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Mon, 17 May 2021 01:13:21 +0200 Subject: [PATCH] identity-service-api: Update changelog --- crates/ruma-identity-service-api/CHANGELOG.md | 37 +++++++++++++++---- 1 file changed, 29 insertions(+), 8 deletions(-) diff --git a/crates/ruma-identity-service-api/CHANGELOG.md b/crates/ruma-identity-service-api/CHANGELOG.md index 84bc147a..3f72eb7e 100644 --- a/crates/ruma-identity-service-api/CHANGELOG.md +++ b/crates/ruma-identity-service-api/CHANGELOG.md @@ -1,18 +1,39 @@ # [unreleased] -# 0.0.1 - -* Add authentication endpoints: - ```rust - authentication::{get_account_information::v2, logout::v2, register::v2} - ``` -* Add email association endpoints: +* Add more endpoints: ```rust association::{ email::{ create_email_validation_session::v2, validate_email::v2, validate_email_by_end_user::v2, - } + }, + msisdn::{ + create_msisdn_validation_session::v2, + validate_msisdn::v2, + validate_msisdn_by_phone_number::v2, + }, + }, + key::{ + check_public_key_validity::v2, + get_public_key::v2, + validate_ephemeral_key::v2, + }, + lookup::{ + get_hash_parameters::v2, + lookup_3pid::v2, + }, + status::v2, + tos::{ + accept_terms_of_service::v2, + get_terms_of_service::v2, } ``` + +# 0.0.1 + +Initial release with the following endpoints: + +```rust +authentication::{get_account_information::v2, logout::v2, register::v2} +```