Skip to content
Snippets Groups Projects
Commit 8233d9a3 authored by Ian Cordasco's avatar Ian Cordasco
Browse files

Release notes for 1.0.0a2

Bump package version
parent 0c56f02e
No related branches found
No related tags found
No related merge requests found
.. vim: set tw=100
 
1.0.0a2: 2015-02-01
1.0.0a2: 2015-07-14
~~~~~~~~~~~~~~~~~~~
 
Breaking Changes (since 1.0.0a1)
Loading
Loading
@@ -15,6 +15,8 @@ Breaking Changes (since 1.0.0a1)
- The ``contents`` method on ``github3.pulls.PullFile`` instances now return
instances of ``github3.repos.contents.Contents``.
 
- Replace ``Repository#comments_on_commit`` with ``RepoCommit#comments``.
Features Added (since 1.0.0a1)
``````````````````````````````
 
Loading
Loading
@@ -22,12 +24,33 @@ Features Added (since 1.0.0a1)
 
- You can retrieve the contents of the file in a pull request as bytes.
 
- Add ``id`` attribute to ``github3.repos.milestone.Milestone``.
- Add support for sort, direction, and since parameters to the ``comments``
method on ``github3.issues.Issue``.
- Add branch argument to update and delete methods on
``github3.repos.contents.Contents``.
- Add ``permissions`` attribute to ``github3.repos.repo.Repository`` object to
retrieve the permissions for a specific repository.
- Allow a deployment to be retrieved by its id.
- Add the ``delete`` method to the ``github3.repos.release.Asset`` class.
Bugs Fixed (since 1.0.0a1)
``````````````````````````
 
- Pull request files can now be downloaded even when the repository is
private.
 
- Fix exception when merging a pull request with an empty commit message.
- Add missing Issue events.
- Coerce review comment positions to integers.
 
1.0.0a1: 2014-12-07
~~~~~~~~~~~~~~~~~~~
Loading
Loading
@@ -101,7 +124,7 @@ Old name New name
``Repository#iter_code_frequency`` ``Repository#code_frequency``
``Repository#iter_collaborators`` ``Repository#collaborators``
``Repository#iter_comments`` ``Repository#comments``
``Repository#iter_comments_on_commit`` ``Repository#comments_on_commit``
``Repository#iter_comments_on_commit`` ``RepoCommit#comments``
``Repository#iter_commit_activity`` ``Repository#commit_activity``
``Repository#iter_commits`` ``Repository#commits``
``Repository#iter_contributor_statistics`` ``Repository#contributor_statistics``
Loading
Loading
Loading
Loading
@@ -4,8 +4,8 @@ __title__ = 'github3'
__author__ = 'Ian Cordasco'
__author_email__ = 'graffatcolmingov@gmail.com'
__license__ = 'Modified BSD'
__copyright__ = 'Copyright 2012-2014 Ian Cordasco'
__version__ = '1.0.0a1'
__copyright__ = 'Copyright 2012-2015 Ian Cordasco'
__version__ = '1.0.0a2'
__version_info__ = tuple(int(i) for i in __version__.split('.') if i.isdigit())
__url__ = 'https://github3py.readthedocs.org'
 
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment