Skip to content

Commit 67b1902

Browse files
committed
Prepare for 3.1.0 release
Update our release notes and bump the version string
1 parent e68aa38 commit 67b1902

File tree

2 files changed

+17
-3
lines changed

2 files changed

+17
-3
lines changed

docs/source/release-notes/3.1.0.rst

+15-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
1-
3.1.0: 2022-02-xx
1+
3.1.0: 2022-02-14
22
-----------------
33

4+
Dependency Change
5+
`````````````````
6+
7+
- Swapped LGPL jwcrypto dependency for non-GPL PyJWT
8+
49
Features Added
510
``````````````
611

@@ -10,3 +15,12 @@ Features Added
1015

1116
- Add :meth:`github3.orgs.Team.permissions_for("<org>/<repo>")` to retrieve a
1217
full permissions listing for a given repository in an organization.
18+
19+
20+
Bug Fixes
21+
`````````
22+
23+
- Previously, if a file was empty ``Contents.decoded`` might return text
24+
instead of bytes, this is now fixed.
25+
26+
- Fix ``Repository#ref`` using the wrong endpoint

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-2021 Ian Stapleton Cordasco"
8-
__version__ = "3.0.0"
7+
__copyright__ = "Copyright 2012-2022 Ian Stapleton Cordasco"
8+
__version__ = "3.1.0"
99
__version_info__ = tuple(
1010
int(i) for i in __version__.split(".") if i.isdigit()
1111
)

0 commit comments

Comments
 (0)