Skip to content

Commit

Permalink
Release 1.1.0
Browse files Browse the repository at this point in the history
A bugfix release with one feature enhancement.
  • Loading branch information
omgjlk committed Apr 9, 2018
1 parent 0dea703 commit 95b93e3
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
23 changes: 23 additions & 0 deletions LATEST_VERSION_NOTES.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,28 @@
.. vim: set tw=100
1.1.0: 2018-04-09
~~~~~~~~~~~~~~~~~

This is a small release with some enhancments.

Breaking Changes
````````````````

- Repository collaborators now returns a ``users.Collaborator`` object, instead of
a ``users.ShortUser`` object. This is to support collaborator affiliations. A
refresh call of this object (and ``users.Contributor``) will result in a full
``users.User`` object. The call to iterate collaborators of a repository
(``Repsitory#collaborators``) can now take an ``affiliation`` filter with options of
``outside``, ``direct``, and ``all``. The default is ``all``, which preserves the previous
behavior of this method.

Bugs Fixed
``````````

- Parse more attributes on ``IssueEvent`` into objects
- Handle older GitHub Enterprise responses for authenticated user objects
- Handle large file pull request responses not including a ``patch`` attribute

1.0.2: 2018-03-28
~~~~~~~~~~~~~~~~~

Expand Down
2 changes: 1 addition & 1 deletion github3/__about__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
__author_email__ = 'graffatcolmingov@gmail.com'
__license__ = 'Modified BSD'
__copyright__ = 'Copyright 2012-2018 Ian Stapleton Cordasco'
__version__ = '1.0.2'
__version__ = '1.1.0'
__version_info__ = tuple(int(i) for i in __version__.split('.') if i.isdigit())
__url__ = 'https://github3.readthedocs.io'

Expand Down

0 comments on commit 95b93e3

Please sign in to comment.