diff --git a/CHANGELOG.md b/CHANGELOG.md index aa8a2683..3405986f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,14 @@ main ----- -* [DE-542] Added `shards()` method to `Collection` -* [DE-584] Refactor deprecated `/_api/simple` methods +7.6.1 +----- + +* [DE-542] Added `shards()` method to `Collection` by @apetenchea in https://github.com/ArangoDB-Community/python-arango/pull/274 +* [DE-584] Refactor deprecated `/_api/simple` methods by @aMahanna in https://github.com/ArangoDB-Community/python-arango/pull/268 +* Added `raise_on_document_error` parameter to `Collection.update_many()` by @aMahanna in https://github.com/ArangoDB-Community/python-arango/pull/273 +* Added `computed_values` parameter to `Collection.onfigure()` by @aMahanna in https://github.com/ArangoDB-Community/python-arango/pull/268 +* Various bug fixes 7.6.0 ----- diff --git a/arango/request.py b/arango/request.py index 8ae7bd0c..6afc6046 100644 --- a/arango/request.py +++ b/arango/request.py @@ -12,7 +12,7 @@ def normalize_headers( if driver_flags is not None: for flag in driver_flags: flags = flags + flag + ";" - driver_version = "7.6.0" + driver_version = "7.6.1" driver_header = "python-arango/" + driver_version + " (" + flags + ")" normalized_headers: Headers = { "charset": "utf-8",