Skip to content

Commit f87cdb4

Browse files
committed
Prepare release 4.0.0
1 parent 1c14af1 commit f87cdb4

File tree

4 files changed

+49
-3
lines changed

4 files changed

+49
-3
lines changed

AUTHORS.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Maintainer(s)
1212

1313
- Matt Chung (@itsmemattchung)
1414

15-
- Thiago D'Ávila (@staticdev)
15+
- Thiago A. (@staticdev)
1616

1717
Requests
1818
````````

docs/source/release-notes/4.0.0.rst

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
4.0.0: 2023-04-16
2+
-----------------
3+
4+
Features Added
5+
``````````````
6+
7+
- Add tests for Python 3.11 (@cclauss). See also gh-1124_
8+
- Add function for getting repos for github app (@pettermk). See also gh-1085_
9+
- Cancel and failed invitation (@pallavisharma1210). See also gh-1091_
10+
- Allow to set GitHub API version (@anz-ableton). See also gh-1121_
11+
12+
Removal
13+
```````
14+
15+
- Remove support to EOL Python 3.6 (@staticdev). See also gh-1103_
16+
17+
Dependency Change
18+
`````````````````
19+
20+
- Bump the dev-requirements.txt (@offbyone). See also gh-1136_
21+
22+
Bug Fixes
23+
`````````
24+
25+
- Missing set permission for collaborators. See also gh-954_
26+
27+
.. _gh-954:
28+
https://github.com/sigmavirus24/github3.py/issues/954
29+
.. _gh-1103:
30+
https://github.com/sigmavirus24/github3.py/issues/1103
31+
.. _gh-1085:
32+
https://github.com/sigmavirus24/github3.py/issues/1085
33+
.. _gh-1091:
34+
https://github.com/sigmavirus24/github3.py/pull/1091
35+
.. _gh-1124:
36+
https://github.com/sigmavirus24/github3.py/pull/1124
37+
.. _gh-1121:
38+
https://github.com/sigmavirus24/github3.py/issues/1121
39+
.. _gh-1136:
40+
https://github.com/sigmavirus24/github3.py/pull/1136

docs/source/release-notes/index.rst

+6
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@
55
All of the release notes that have been recorded for github3.py are organized
66
here with the newest releases first.
77

8+
4.x Release Series
9+
==================
10+
11+
.. toctree::
12+
4.0.0
13+
814
3.x Release Series
915
==================
1016

src/github3/__about__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
__author__ = "Ian Stapleton Cordasco"
55
__author_email__ = "graffatcolmingov@gmail.com"
66
__license__ = "Modified BSD"
7-
__copyright__ = "Copyright 2012-2022 Ian Stapleton Cordasco"
8-
__version__ = "3.2.0"
7+
__copyright__ = "Copyright 2012 Ian Stapleton Cordasco"
8+
__version__ = "4.0.0"
99
__version_info__ = tuple(
1010
int(i) for i in __version__.split(".") if i.isdigit()
1111
)

0 commit comments

Comments
 (0)