From 2a48ca24a33bb3e53430d0e4b14b5b1ed3a44e1e Mon Sep 17 00:00:00 2001 From: moogar0880 Date: Tue, 11 Jan 2022 22:33:03 -0500 Subject: [PATCH] release 3.4.0 docs --- HISTORY.rst | 7 +++++++ trakt/__init__.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/HISTORY.rst b/HISTORY.rst index e596c486..44fe9cd1 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,5 +1,12 @@ Release History ^^^^^^^^^^^^^^^ +3.4.0 (2022-01-11) ++++++++++++++++++++ + +* Config boostrapping now occurs at runtime rather than load time @glensc (#162) +* Unit tests can now be run from any working directory @glensc (#170) +* Code cleanup - removed unused imports and superfluous parens from some yield statements @glensc (#171) + 3.3.0 (2022-01-07) +++++++++++++++++++ diff --git a/trakt/__init__.py b/trakt/__init__.py index fed028e5..52a42816 100644 --- a/trakt/__init__.py +++ b/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])