From fd5ecea86195877d876f47fcd146521d48b633dd Mon Sep 17 00:00:00 2001 From: Robin de Rooij Date: Mon, 17 Jul 2023 13:09:53 +0200 Subject: [PATCH] Add release notes and increment version (#412) --- RELEASE_NOTES.md | 7 +++++++ pyproject.toml | 2 +- setup.py | 2 +- terminusdb_client/__version__.py | 2 +- 4 files changed, 10 insertions(+), 3 deletions(-) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 4fc3cfe1..fa28f7f1 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,5 +1,12 @@ # TerminusDB Python Client Release Notes +## v10.2.4 + +### Bug fixes + +- Fix bug in prop conversion for lists from JSON schema +- Complete XSD types for tdbpy + ## v10.2.3 ### New diff --git a/pyproject.toml b/pyproject.toml index c09e3721..8e9a30f9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "terminusdb-client" -version = "10.2.3" +version = "10.2.4" description = "Python client for Terminus DB" authors = ["TerminusDB group"] license = "Apache Software License" diff --git a/setup.py b/setup.py index 7e4a69f3..72a199cd 100644 --- a/setup.py +++ b/setup.py @@ -29,7 +29,7 @@ setuptools.setup( name="terminusdb-client", - version="10.2.3", + version="10.2.4", author="TerminusDB group", author_email="terminusdatabase@gmail.com", description="Python client for Terminus DB", diff --git a/terminusdb_client/__version__.py b/terminusdb_client/__version__.py index e6ac5bd5..b4839ccc 100644 --- a/terminusdb_client/__version__.py +++ b/terminusdb_client/__version__.py @@ -1,7 +1,7 @@ __title__ = "terminusdb-client" __description__ = "TerminusDB client library for accessing the Terminus DB API" __url__ = "" -__version__ = "10.2.3" +__version__ = "10.2.4" __build__ = 00 __author__ = "TerminusDB group" __author_email__ = "team@terminusdb.com"