From a8c3cd8c908c62dfcc9808396d8149ed6052e124 Mon Sep 17 00:00:00 2001 From: silverpill Date: Sat, 6 Nov 2021 17:50:33 +0000 Subject: [PATCH] Bump version to 0.2.0 --- Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 9 ++++++--- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1fb4530..68714e4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1703,7 +1703,7 @@ dependencies = [ [[package]] name = "mitra" -version = "0.1.0" +version = "0.2.0" dependencies = [ "actix-cors", "actix-files", diff --git a/Cargo.toml b/Cargo.toml index c65e17a..81e7718 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mitra" -version = "0.1.0" +version = "0.2.0" description = "Mitra backend" license = "AGPL-3.0" diff --git a/README.md b/README.md index 6f9617d..0745662 100644 --- a/README.md +++ b/README.md @@ -9,9 +9,7 @@ Federated social network with smart contracts. - Converting posts into NFTs. - More crypto features in the future. -**WIP: Mitra is not ready for production yet.** - -Demo instance: https://test.mitra.social/ (invite-only) +Demo instance: https://mitra.social/ (invite-only) Smart contracts repo: https://codeberg.org/silverpill/mitra-contracts @@ -84,11 +82,16 @@ POST /api/v1/accounts/{account_id}/follow POST /api/v1/accounts/{account_id}/unfollow GET /api/v1/directory GET /api/v1/instance +GET /api/v1/markers +POST /api/v1/markers POST /api/v1/media +GET /api/v1/notifications GET /api/v2/search POST /api/v1/statuses GET /api/v1/statuses/{status_id} GET /api/v1/statuses/{status_id}/context +POST /api/v1/statuses/{status_id}/favourite +POST /api/v1/statuses/{status_id}/unfavourite GET /api/v1/timelines/home ```