Skip to content

Commit 9b44f9c

Browse files
Merge pull request #370 from terminusdb/new_version
Prepare for new version v10.2.0
2 parents bdeaef5 + 8e34bc7 commit 9b44f9c

File tree

4 files changed

+22
-3
lines changed

4 files changed

+22
-3
lines changed

RELEASE_NOTES.md

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

3+
## v10.2.0
4+
5+
### New
6+
7+
- Implement info endpoint
8+
- Implement OK endpoint
9+
- Add proper date type to WOQLQuery
10+
11+
### Bug fixes
12+
13+
- Fix get_triples functions
14+
- Fix update_triples functions
15+
- Fix add_triples functions
16+
- Fix has_doc function (greatly improves performance)
17+
18+
### Deprecations
19+
20+
- We drop 3.7 support and upgraded pandas because of a security issue
21+
322
## v10.1.5
423

524
### New

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.5"
3+
version = "10.2.0"
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.5",
32+
version="10.2.0",
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.5"
4+
__version__ = "10.2.0"
55
__build__ = 00
66
__author__ = "TerminusDB group"
77
__author_email__ = "team@terminusdb.com"

0 commit comments

Comments
 (0)