Skip to content

Commit

Permalink
Update to prepare for 3.1.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
sigmavirus24 committed Feb 21, 2022
1 parent 4e11e8f commit 3c965e3
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 4 deletions.
11 changes: 11 additions & 0 deletions docs/source/release-notes/3.1.1.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
3.1.1: 2022-02-21
-----------------

Features Added
``````````````

- Support editing parent team and team visibility via
:meth:`github3.orgs.Team.edit`

- Added more allowed statuses to Deployments for
:meth:`github3.repos.deployment.Deployment.create_status()`
3 changes: 0 additions & 3 deletions docs/source/release-notes/3.2.0.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,6 @@ Dependency Change
Features Added
``````````````

- Added more allowed statuses to Deployments for
:meth:`github3.repos.deployment.Deployment.create_status()`


Bug Fixes
`````````
1 change: 1 addition & 0 deletions docs/source/release-notes/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ here with the newest releases first.

.. toctree::
3.2.0
3.1.1
3.1.0
3.0.0

Expand Down
5 changes: 5 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@ classifiers =
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: Implementation :: CPython
project_urls =
Documentation = https://github3.readthedocs.io
Changelog = https://github3.readthedocs.io/en/latest/release-notes/index.html
Source = https://github3.com/sigmavirus24/github3.py
Released Versions = https://github.com/sigmavirus24/github3.py/tags
requires_dist =
requests>=2.0
uritemplate>=3.0.0
Expand Down
2 changes: 1 addition & 1 deletion src/github3/__about__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
__author_email__ = "graffatcolmingov@gmail.com"
__license__ = "Modified BSD"
__copyright__ = "Copyright 2012-2022 Ian Stapleton Cordasco"
__version__ = "3.1.0"
__version__ = "3.1.1"
__version_info__ = tuple(
int(i) for i in __version__.split(".") if i.isdigit()
)
Expand Down

0 comments on commit 3c965e3

Please sign in to comment.