Skip to content

Commit 95b93e3

Browse files
committed
Release 1.1.0
A bugfix release with one feature enhancement.
1 parent 0dea703 commit 95b93e3

File tree

2 files changed

+24
-1
lines changed

2 files changed

+24
-1
lines changed

LATEST_VERSION_NOTES.rst

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,28 @@
11
.. vim: set tw=100
22
3+
1.1.0: 2018-04-09
4+
~~~~~~~~~~~~~~~~~
5+
6+
This is a small release with some enhancments.
7+
8+
Breaking Changes
9+
````````````````
10+
11+
- Repository collaborators now returns a ``users.Collaborator`` object, instead of
12+
a ``users.ShortUser`` object. This is to support collaborator affiliations. A
13+
refresh call of this object (and ``users.Contributor``) will result in a full
14+
``users.User`` object. The call to iterate collaborators of a repository
15+
(``Repsitory#collaborators``) can now take an ``affiliation`` filter with options of
16+
``outside``, ``direct``, and ``all``. The default is ``all``, which preserves the previous
17+
behavior of this method.
18+
19+
Bugs Fixed
20+
``````````
21+
22+
- Parse more attributes on ``IssueEvent`` into objects
23+
- Handle older GitHub Enterprise responses for authenticated user objects
24+
- Handle large file pull request responses not including a ``patch`` attribute
25+
326
1.0.2: 2018-03-28
427
~~~~~~~~~~~~~~~~~
528

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.0.2'
8+
__version__ = '1.1.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)