diff --git a/CHANGES.rst b/CHANGES.rst index cf5f8c6..fca130e 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -7,6 +7,17 @@ Changes ======= +Version v0.10.0 (release 2023-09-12) + +- add way to generate commands that update JSON +- refactor: delete-draft +- test: improve run-tests.sh +- setup: use pytest-black-ng instead of pytest-black +- fix: logic error +- fix: can't return draft without existing record +- fix: cli delete-draft + + Version v0.9.0 (release 2023-07-31) - records: add data_model parameter diff --git a/repository_cli/__init__.py b/repository_cli/__init__.py index 81b8fc1..ff0b943 100644 --- a/repository_cli/__init__.py +++ b/repository_cli/__init__.py @@ -9,6 +9,6 @@ from .ext import RepositoryCli -__version__ = "0.9.0" +__version__ = "0.10.0" __all__ = ("__version__", "RepositoryCli")