Skip to content

Commit

Permalink
Merge pull request #159 from moogar0880/3.2.2-release
Browse files Browse the repository at this point in the history
release 3.2.2 docs
  • Loading branch information
moogar0880 authored Oct 27, 2021
2 parents 22a1066 + cbf3407 commit 9d6758c
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 1 deletion.
22 changes: 22 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,11 @@
# CircleCI Python images available at: https://hub.docker.com/r/circleci/python/
- image: circleci/python:3.9

.py_3_10_container: &py_3_10_container
docker:
# CircleCI Python images available at: https://hub.docker.com/r/circleci/python/
- image: circleci/python:3.10

.pytest: &pytest
run:
name: Run unit tests
Expand Down Expand Up @@ -115,6 +120,18 @@ jobs:
<<: *common
<<: *lint_steps

#############################################################################
### Python 3.10 Jobs
#############################################################################
test.3.10:
<<: *py_3_10_container
<<: *common
<<: *test_steps
lint.3.10:
<<: *py_3_10_container
<<: *common
<<: *lint_steps

workflows:
version: 2

Expand All @@ -137,3 +154,8 @@ workflows:
jobs:
- test.3.9
- lint.3.9

py-3.10-verify:
jobs:
- test.3.10
- lint.3.10
4 changes: 4 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
Release History
^^^^^^^^^^^^^^^
3.2.2 (2021-10-26)
+++++++++++++++++++

* Fix an issue where the show of a TVEpisode was not always set properly @twolaw (#157)

3.2.1 (2021-08-08)
+++++++++++++++++++
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, 1)
version_info = (3, 2, 2)
__author__ = 'Jon Nappi'
__version__ = '.'.join([str(i) for i in version_info])

0 comments on commit 9d6758c

Please sign in to comment.