Skip to content

Commit

Permalink
Merge branch 'hotfix/0.8.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
fuzeman committed Sep 6, 2016
2 parents 780ed85 + 8932893 commit de1e606
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGES.rst
@@ -1,3 +1,8 @@
0.8.1 (2016-09-06)
------------------
**Tests**
- Updated tests to support the latest :code:`Guid` changes

0.8.0 (2016-09-06)
------------------
**Added**
Expand Down
2 changes: 1 addition & 1 deletion plex_metadata/__init__.py
Expand Up @@ -2,7 +2,7 @@

log = logging.getLogger(__name__)

__version__ = '0.8.0'
__version__ = '0.8.1'


try:
Expand Down
4 changes: 2 additions & 2 deletions tests/guid/test_modern.py
Expand Up @@ -221,7 +221,7 @@ def test_invalid_format():
for item in guids:
r = Guid.parse(item)

assert r is None
assert r.valid is False


def test_invalid_show():
Expand Down Expand Up @@ -270,7 +270,7 @@ def test_strict_movie():
for item in guids:
r = Guid.parse(item, media='movie', strict=True)

assert r is None
assert r.valid is False


def test_unsupported_episode():
Expand Down

0 comments on commit de1e606

Please sign in to comment.