Skip to content

Commit 3c965e3

Browse files
committed
Update to prepare for 3.1.1 release
1 parent 4e11e8f commit 3c965e3

File tree

5 files changed

+18
-4
lines changed

5 files changed

+18
-4
lines changed

docs/source/release-notes/3.1.1.rst

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
3.1.1: 2022-02-21
2+
-----------------
3+
4+
Features Added
5+
``````````````
6+
7+
- Support editing parent team and team visibility via
8+
:meth:`github3.orgs.Team.edit`
9+
10+
- Added more allowed statuses to Deployments for
11+
:meth:`github3.repos.deployment.Deployment.create_status()`

docs/source/release-notes/3.2.0.rst

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,6 @@ Dependency Change
88
Features Added
99
``````````````
1010

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

1512
Bug Fixes
1613
`````````

docs/source/release-notes/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ here with the newest releases first.
1010

1111
.. toctree::
1212
3.2.0
13+
3.1.1
1314
3.1.0
1415
3.0.0
1516

setup.cfg

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,11 @@ classifiers =
2323
Programming Language :: Python :: 3.9
2424
Programming Language :: Python :: 3.10
2525
Programming Language :: Python :: Implementation :: CPython
26+
project_urls =
27+
Documentation = https://github3.readthedocs.io
28+
Changelog = https://github3.readthedocs.io/en/latest/release-notes/index.html
29+
Source = https://github3.com/sigmavirus24/github3.py
30+
Released Versions = https://github.com/sigmavirus24/github3.py/tags
2631
requires_dist =
2732
requests>=2.0
2833
uritemplate>=3.0.0

src/github3/__about__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
__author_email__ = "[email protected]"
66
__license__ = "Modified BSD"
77
__copyright__ = "Copyright 2012-2022 Ian Stapleton Cordasco"
8-
__version__ = "3.1.0"
8+
__version__ = "3.1.1"
99
__version_info__ = tuple(
1010
int(i) for i in __version__.split(".") if i.isdigit()
1111
)

0 commit comments

Comments
 (0)