2 parents c066bdf + 2a48ca2 commit 8a6d4f1Copy full SHA for 8a6d4f1
2 files changed
HISTORY.rst
@@ -1,5 +1,12 @@
1
Release History
2
^^^^^^^^^^^^^^^
3
+3.4.0 (2022-01-11)
4
++++++++++++++++++++
5
+
6
+* Config boostrapping now occurs at runtime rather than load time @glensc (#162)
7
+* Unit tests can now be run from any working directory @glensc (#170)
8
+* Code cleanup - removed unused imports and superfluous parens from some yield statements @glensc (#171)
9
10
3.3.0 (2022-01-07)
11
+++++++++++++++++++
12
trakt/__init__.py
@@ -5,6 +5,6 @@
except ImportError:
pass
-version_info = (3, 3, 0)
+version_info = (3, 4, 0)
__author__ = 'Jon Nappi'
__version__ = '.'.join([str(i) for i in version_info])
0 commit comments