Skip to content

Commit

Permalink
Merge pull request #167 from moogar0880/3.3.0-release
Browse files Browse the repository at this point in the history
3.3.0 release
  • Loading branch information
moogar0880 authored Jan 8, 2022
2 parents 8c03f51 + 305c828 commit 79ac471
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 8 deletions.
6 changes: 6 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
Release History
^^^^^^^^^^^^^^^
3.3.0 (2022-01-07)
+++++++++++++++++++

* Add LockedUserAccountException support @glensc (#163)
* Add ids property to People objects @thechicacode (#135)

3.2.2 (2021-10-26)
+++++++++++++++++++

Expand Down
10 changes: 3 additions & 7 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,12 +1,8 @@
PyTrakt
=======
.. image:: https://travis-ci.org/moogar0880/PyTrakt.svg
:target: https://travis-ci.org/moogar0880/PyTrakt
:alt: Travis CI Status

.. image:: https://landscape.io/github/moogar0880/PyTrakt/master/landscape.svg?style=flat
:target: https://landscape.io/github/moogar0880/PyTrakt/master
:alt: Code Health
.. image:: https://circleci.com/gh/moogar0880/PyTrakt/tree/master.svg?style=svg
:target: https://circleci.com/gh/moogar0880/PyTrakt/tree/master
:alt: CircleCI Status

.. image:: https://img.shields.io/pypi/dm/trakt.svg
:target: https://pypi.python.org/pypi/trakt
Expand Down
2 changes: 1 addition & 1 deletion trakt/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
except ImportError:
pass

version_info = (3, 2, 2)
version_info = (3, 3, 0)
__author__ = 'Jon Nappi'
__version__ = '.'.join([str(i) for i in version_info])
1 change: 1 addition & 0 deletions trakt/people.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ def _build(self, data):
except AttributeError as ae:
if not hasattr(self, '_' + key):
raise ae

@property
def ids(self):
"""Accessor to the trakt, imdb, and tmdb ids, as well as the trakt.tv
Expand Down

0 comments on commit 79ac471

Please sign in to comment.