8000 Update version and notes for 1.2.0 · pythonthings/github3.py@162f247 · GitHub
[go: up one dir, main page]

Skip to content

Commit 162f247

Browse files
committed
Update version and notes for 1.2.0
Add complete set of release notes as well as a special section thanking Jacopo for their contributions. Let's ship out all these excellent features.
1 parent 830b562 commit 162f247

File tree

2 files changed

+42
-3
lines changed

2 files changed

+42
-3
lines changed

docs/source/release-notes/1.2.0.rst

Lines changed: 41 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
1.2.0: unreleased
1+
1.2.0: 2018-08-22
22
-----------------
33

4-
This is a small release with some enhancements.
4+
This is a larger release with some enhancements and bug fixes.
55

66
Features Added
77
``````````````
@@ -47,6 +47,45 @@ Features Added
4747

4848
- The branch protections API is now completely represented in github3.py.
4949

50+
- We now support the GPG Keys API.
51+
52+
- We now support the Commit Search API.
53+
54+
- We now support Repository Invitations.
55+
56+
- We now have assign and unassign methods that support assigning and
57+
unassigning multiple users at once.
58+
59+
- We now support review requests on Pull Requests.
60+
61+
- We now support the ability for a user to activate their membership in an
62+
Organization.
63+
64+
- We now support recurisvely traverse a tree via the API.
65+
66+
- We now support enabling or disabling projects on a Repository.
67+
68+
- We now support editing and reading Repository topics.
69+
70+
- We now support Repository Pull Request merge settings.
71+
72+
73+
Bugs Fixed
74+
``````````
75+
76+
- No longer require a Gist to have an owner.
77+
78+
- ``Branch.latest_sha()`` now returns text (unicode) as documented.
79+
80+
81+
Special Thanks
82+
``````````````
83+
84+
A great deal of the exception feature work done above was performed by the
85+
newest team member of the github3.py project: Jacopo Notarstefano (a.k.a,
86+
``@jacquerie`` on GitHub). This project has had new life breathed into it
87+
thanks to Jacopo.
88+
5089

5190
.. links
5291
.. _Installations API:

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__ = 'graffatcolmingov@gmail.com'
66
__license__ = 'Modified BSD'
77
__copyright__ = 'Copyright 2012-2018 Ian Stapleton Cordasco'
8-
__version__ = '1.1.0'
8+
__version__ = '1.2.0'
99
__version_info__ = tuple(int(i) for i in __version__.split('.') if i.isdigit())
1010
__url__ = 'https://github3.readthedocs.io'
1111

0 commit comments

Comments
 (0)
0