From 79a7889eb763ca71c023821310d6acbb224d2f53 Mon Sep 17 00:00:00 2001 From: Nico Alt <nicoalt@posteo.org> Date: Wed, 14 Oct 2020 14:01:52 +0000 Subject: [PATCH] Annote versions in Contacts.set_alias --- briar_wrapper/models/contacts.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/briar_wrapper/models/contacts.py b/briar_wrapper/models/contacts.py index 32be560..763024e 100644 --- a/briar_wrapper/models/contacts.py +++ b/briar_wrapper/models/contacts.py @@ -45,6 +45,8 @@ class Contacts(Model): [Upstream documentation](https://code.briarproject.org/briar/briar/-/blob/master/briar-headless/README.md#changing-alias-of-a-contact) + .. versionadded:: 0.0.5 + .. versionchanged:: 0.0.6 """ url = urljoin(BASE_HTTP_URL, self._API_ENDPOINT + f"{str(contact_id)}/alias") _put(url, headers=self._headers, json={"alias": alias}) -- GitLab