8000 Release notes for 1.0.0a2 · danpalmer/github3.py@8233d9a · GitHub
[go: up one dir, main page]

Skip to content

Commit 8233d9a

Browse files
committed
Release notes for 1.0.0a2
Bump package version
1 parent 0c56f02 commit 8233d9a

File tree

2 files changed

+27
-4
lines changed

2 files changed

+27
-4
lines changed

LATEST_VERSION_NOTES.rst

Lines changed: 25 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.. vim: set tw=100
22
3-
1.0.0a2: 2015-02-01
3+
1.0.0a2: 2015-07-14
44
~~~~~~~~~~~~~~~~~~~
55

66
Breaking Changes (since 1.0.0a1)
@@ -15,19 +15,42 @@ Breaking Changes (since 1.0.0a1)
1515
- The ``contents`` method on ``github3.pulls.PullFile`` instances now return
1616
instances of ``github3.repos.contents.Contents``.
1717

18+
- Replace ``Repository#comments_on_commit`` with ``RepoCommit#comments``.
19+
1820
Features Added (since 1.0.0a1)
1921
``````````````````````````````
2022

2123
- You can now download a file in a pull request to a file on disk.
2224

2325
- You can retrieve the contents of the file in a pull request as bytes.
2426

27+
- Add ``id`` attribute to ``github3.repos.milestone.Milestone``.
28+
29+
- Add support for sort, direction, and since parameters to the ``comments``
30+
method on ``github3.issues.Issue``.
31+
32+
- Add branch argument to update and delete methods on
33+
``github3.repos.contents.Contents``.
34+
35+
- Add ``permissions`` attribute to ``github3.repos.repo.Repository`` object to
36+
retrieve the permissions for a specific repository.
37+
38+
- Allow a deployment to be retrieved by its id.
39+
40+
- Add the ``delete`` method to the ``github3.repos.release.Asset`` class.
41+
2542
Bugs Fixed (since 1.0.0a1)
2643
``````````````````````````
2744

2845
- Pull request files can now be downloaded even when the repository is
2946
private.
3047

48+
- Fix exception when merging a pull request with an empty commit message.
49+
50+
- Add missing Issue events.
51+
52+
- Coerce review comment positions to integers.
53+
3154

3255
1.0.0a1: 2014-12-07
3356
~~~~~~~~~~~~~~~~~~~
@@ -101,7 +124,7 @@ Old name New name
101124
``Repository#iter_code_frequency`` ``Repository#code_frequency``
102125
``Repository#iter_collaborators`` ``Repository#collaborators``
103126
``Repository#iter_comments`` ``Repository#comments``
104-
``Repository#iter_comments_on_commit`` ``Repository#comments_on_commit``
127+
``Repository#iter_comments_on_commit`` ``RepoCommit#comments``
105128
``Repository#iter_commit_activity`` ``Repository#commit_activity``
106129
``Repository#iter_commits`` ``Repository#commits``
107130
``Repository#iter_contributor_statistics`` ``Repository#contributor_statistics``

github3/__about__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
__author__ = 'Ian Cordasco'
55
__author_email__ = 'graffatcolmingov@gmail.com'
66
__license__ = 'Modified BSD'
7-
__copyright__ = 'Copyright 2012-2014 Ian Cordasco'
8-
__version__ = '1.0.0a1'
7+
__copyright__ = 'Copyright 2012-2015 Ian Cordasco'
8+
__version__ = '1.0.0a2'
99
__version_info__ = tuple(int(i) for i in __version__.split('.') if i.isdigit())
1010
__url__ = 'https://github3py.readthedocs.org'
1111

0 commit comments

Comments
 (0)
0