From f4c20a3b474963825230f9c58e815193661e37f1 Mon Sep 17 00:00:00 2001 From: Vaghinak Basentsyan Date: Thu, 1 Jun 2023 11:23:21 +0400 Subject: [PATCH] Added changelog --- CHANGELOG.rst | 15 +++++++++++++++ README.rst | 14 ++++++++++++-- 2 files changed, 27 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 4c7623722..8c75dcfdd 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -6,6 +6,21 @@ History All release highlights of this project will be documented in this file. +4.4.13 - June 04, 2023 +_______________________ + +**Updated** + + - ``SAClient.download_annotations()`` Replaced `___objects.json` and `___pixel.json` postfixes to `.json`. + - ``SAClient.set_approval_statuses()`` Added Document project support. + - ``SAClient.convert_project_type()`` Added required argument `convert_to`. + - ``SAClient.import_annotation()`` Replaced `___objects.json` and `___pixel.json` postfixes to `.json`. + - ``SAClient.download_export()`` Replaced `___objects.json` and `___pixel.json` postfixes to `.json`. + +**Removed** + + - ``SAClient.convert_json_version()`` method. + 4.4.12 - April 23, 2023 _______________________ diff --git a/README.rst b/README.rst index 192acc518..efab0af2f 100644 --- a/README.rst +++ b/README.rst @@ -33,8 +33,18 @@ Authentication # by token sa_client = SAClient(token='') # by config file - # default path is ~/.superannotate/config.json - sa_client = SAClient(config_path='~/.superannotate/dev_config.json') + # default path is ~/.superannotate/config.ini + sa_client = SAClient(config_path='~/.superannotate/dev_config.ini') + + +config.ini example +--------------- +.. code-block:: python + + [DEFAULT] + SA_TOKEN = + LOGGING_LEVEL = INFO + Using superannotate -------------------