8000 Update version and notes for 1.3.0 · staticdev/github4.py@4ab12ac · GitHub
[go: up one dir, main page]

Skip to content
8000
This repository was archived by the owner on May 22, 2021. It is now read-only.

Commit 4ab12ac

Browse files
Maryna Peresypkinasigmavirus24
authored andcommitted
Update version and notes for 1.3.0
1 parent d146cc9 commit 4ab12ac

File tree

3 files changed

+61
-1
lines changed

3 files changed

+61
-1
lines changed

docs/source/release-notes/1.3.0.rst

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
1.3.0: 2019-01-25
2+
-----------------
3+
4+
Features Added
5+
``````````````
6+
7+
- Add partial support for the Checks API:
8+
9+
- Add support for listing check runs via ``check_runs`` and check suites
10+
via ``check_suites`` methods to ``RepoCommit``, ``MiniCommit`` and
11+
``ShortCommit`` classes
12+
13+
- ``CheckRun.update`` to update the check run
14+
15+
- ``CheckSuite.check_runs`` to retrieve the check runs for this suite
16+
17+
- ``CheckRunOutput.annotations`` class to retrieve the annotations for a
18+
check run
19+
20+
- Add ``unignore`` method to unignore notifications from repository for the
21+
user, to ``Repository`` and ``ShortRepository`` classes.
22+
23+
- Add ``unsubscribe`` method to unsubscribe the user to repository's
24+
notifications, to ``Repository`` and ``ShortRepository`` classes.
25+
26+
- Add support for webhooks in an organization by adding:
27+
28+
- ``OrganizationHook`` class
29+
30+
- ``create_hook``, ``hook``, and ``hooks`` methods to ``ShortOrganization``
31+
and ``Organization`` classes
32+
33+
- A ``Project.retrieve_issue_from_content`` method was added to retrieve an
< 8000 /code>34+
Issue from the content url.
35+
36+
- A ``Project.retrieve_pull_request_from_content`` method was added to
37+
retrieve a PullRequest from the content url.
38+
39+
- Add support for Parent/Child teams via the ``hellicat-preview`` API preview
40+
type.
41+
42+
- Add support for specifying merge commit titles when merging a Pull Request.
43+
44+
45+
Bugs Fixed
46+
``````````
47+
48+
- Stop hard-coding GitHub url that breaks work with a GitHub Enterprise
49+
instance.
50+
51+
- Set default connect and read timeouts in ``GitHubSession`` to avoid hangs.
52+
53+
54+
.. links
55+
.. _Checks API:
56+
https://developer.github.com/v3/orgs/checks/
57+
58+
.. _Webhooks API:
59+
https://developer.github.com/v3/orgs/hooks/

docs/source/release-notes/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ here with the newest releases first.
99
==================
1010

1111
.. toctree::
12+
1.3.0
1213
1.2.0
1314
1.1.0
1415
1.0.2

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.2.0"
8+
__version__ = "1.3.0"
99
__version_info__ = tuple(
1010
int(i) for i in __version__.split(".") if i.isdigit()
1111
)

0 commit comments

Comments
 (0)
0