Skip to content

Commit 68bf6e2

Browse files
authored
Preparing for release (#276)
1 parent 022afc2 commit 68bf6e2

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

CHANGELOG.md

+8-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
11
main
22
-----
33

4-
* [DE-542] Added `shards()` method to `Collection`
5-
* [DE-584] Refactor deprecated `/_api/simple` methods
4+
7.6.1
5+
-----
6+
7+
* [DE-542] Added `shards()` method to `Collection` by @apetenchea in https://github.com/ArangoDB-Community/python-arango/pull/274
8+
* [DE-584] Refactor deprecated `/_api/simple` methods by @aMahanna in https://github.com/ArangoDB-Community/python-arango/pull/268
9+
* Added `raise_on_document_error` parameter to `Collection.update_many()` by @aMahanna in https://github.com/ArangoDB-Community/python-arango/pull/273
10+
* Added `computed_values` parameter to `Collection.onfigure()` by @aMahanna in https://github.com/ArangoDB-Community/python-arango/pull/268
11+
* Various bug fixes
612

713
7.6.0
814
-----

arango/request.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def normalize_headers(
1212
if driver_flags is not None:
1313
for flag in driver_flags:
1414
flags = flags + flag + ";"
15-
driver_version = "7.6.0"
15+
driver_version = "7.6.1"
1616
driver_header = "python-arango/" + driver_version + " (" + flags + ")"
1717
normalized_headers: Headers = {
1818
"charset": "utf-8",

0 commit comments

Comments
 (0)