Skip to content

Commit f9822bb

Browse files
committed
Increase version and add release notes
1 parent 42d80a7 commit f9822bb

File tree

4 files changed

+16
-3
lines changed

4 files changed

+16
-3
lines changed

RELEASE_NOTES.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# TerminusDB Python Client Release Notes
22

3+
## v10.1.5
4+
5+
### New
6+
7+
- Add has_databse function to check for the existence of a database
8+
9+
### Deprecations
10+
11+
- We now return an exception when a database does not exist when
12+
calling `get_database` on a database that does not exist. Be
13+
sure to check for a database using has_database instead or
14+
catch the appropiate exception.
15+
316
## v10.1.4
417

518
### Bug Fixes

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "terminusdb-client"
3-
version = "10.1.4"
3+
version = "10.1.5"
44
description = "Python client for Terminus DB"
55
authors = ["TerminusDB group"]
66
license = "Apache Software License"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
setuptools.setup(
3131
name="terminusdb-client",
32-
version="10.1.4",
32+
version="10.1.5",
3333
author="TerminusDB group",
3434
author_email="terminusdatabase@gmail.com",
3535
description="Python client for Terminus DB",

terminusdb_client/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
__title__ = "woqlClient"
22
__description__ = "woqlClient library for accessing the Terminus DB API"
33
__url__ = ""
4-
__version__ = "10.1.4"
4+
__version__ = "10.1.5"
55
__build__ = 00
66
__author__ = "TerminusDB group"
77
__author_email__ = "team@terminusdb.com"

0 commit comments

Comments
 (0)