Skip to content

Commit f9a9eac

Browse files
committed
v0.8.8
1 parent d491a59 commit f9a9eac

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

CHANGELOG.rst

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
Changes
44
-------
55

6+
0.8.8 (2022-09-14)
7+
++++++++++++++++++
8+
9+
**Improvements**
10+
11+
- Use the highest TLS version available (at least TLS 1.2) when making calls.
12+
13+
**Bug Fixes**
14+
15+
- Fix for recursive `hasattr` call when serializing objects `#7 <https://github.com/Geotab/mygeotab-python/pull/7>`__.
16+
617
0.8.7 (2021-11-11)
718
++++++++++++++++++
819

mygeotab/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
__title__ = "mygeotab-python"
44
__author__ = "Aaron Toth"
5-
__version__ = "0.8.7"
5+
__version__ = "0.8.8"
66

77
import sys
88

@@ -17,5 +17,5 @@
1717
__all__ = ["API", "Credentials", "MyGeotabException", "AuthenticationException", "TimeoutException", "server_call"]
1818

1919
py_version = sys.version_info[:3]
20-
if py_version >= (3, 5, 0):
20+
if py_version >= (3, 6, 0):
2121
__all__.append("server_call_async")

0 commit comments

Comments
 (0)