diff --git a/docs/source/release-notes/3.2.0.rst b/docs/source/release-notes/3.2.0.rst index cfd45b9e..f09cb982 100644 --- a/docs/source/release-notes/3.2.0.rst +++ b/docs/source/release-notes/3.2.0.rst @@ -1,13 +1,12 @@ -3.2.0: 2022-xx-xx +3.2.0: 2022-03-02 ----------------- -Dependency Change -````````````````` - +Bug Fixes +````````` -Features Added -`````````````` +- Migrate to GitHub's supported Teams endpoints for select methods that were + relying on the deprecated endpoints. See also gh-1080_ -Bug Fixes -````````` +.. _gh-1080: + https://github.com/sigmavirus24/github3.py/issues/1080 diff --git a/src/github3/__about__.py b/src/github3/__about__.py index 1dc0494c..4312e99d 100644 --- a/src/github3/__about__.py +++ b/src/github3/__about__.py @@ -5,7 +5,7 @@ __author_email__ = "graffatcolmingov@gmail.com" __license__ = "Modified BSD" __copyright__ = "Copyright 2012-2022 Ian Stapleton Cordasco" -__version__ = "3.1.2" +__version__ = "3.2.0" __version_info__ = tuple( int(i) for i in __version__.split(".") if i.isdigit() )