From c677ced98d157e98015ef85644f8f465af2fa3a3 Mon Sep 17 00:00:00 2001 From: Liuyang Wan Date: Thu, 13 Oct 2022 09:23:01 +0800 Subject: [PATCH] Publish version 1.56 --- doc/changes.rst | 31 +++++++++++++++++++++++++++++++ setup.py | 2 +- 2 files changed, 32 insertions(+), 1 deletion(-) diff --git a/doc/changes.rst b/doc/changes.rst index b87f51a1..0c18c95c 100644 --- a/doc/changes.rst +++ b/doc/changes.rst @@ -4,6 +4,37 @@ Change log Stable versions ~~~~~~~~~~~~~~~ +Version 1.56 (October 13, 2022) +----------------------------------- + +**Important** + +This is the last release that will support Python 3.6. + +**Bug Fixes & Improvements** + +* Create repo from template (#2090) (b50283a7) +* Improve signature of Repository.create_repo (#2118) (001970d4) +* Add support for 'visibility' attribute preview for Repositories (#1872) (8d1397af) +* Add Repository.rename_branch method (#2089) (6452ddfe) +* Add function to delete pending reviews on a pull request (#1897) (c8a945bb) +* Cover all code paths in search_commits (#2087) (f1faf941) +* Correctly deal when PaginatedList's data is a dict (#2084) (93b92cd2) +* Add two_factor_authentication in AuthenticatedUser. (#1972) (4f00cbf2) +* Add ProjectCard.edit() to the type stub (#2080) (d417e4c4) +* Add method to delete Workflow runs (#2078) (b1c8eec5) +* Implement organization.cancel_invitation() (#2072) (53fb4988) +* Feat: Add `html_url` property in Team Class. (#1983) (6570892a) +* Add support for Python 3.10 (#2073) (aa694f8e) +* Add github actions secrets to org (#2006) (bc5e5950) +* Correct replay for Organization.create_project() test (#2075) (fcc12368) +* Fix install command example (#2043) (99e00a28) +* Fix: #1671 Convert Python Bool to API Parameter for Authenticated User Notifications (#2001) (1da600a3) +* Do not transform requestHeaders when logging (#1965) (1265747e) +* Add type to OrderedDict (#1954) (ed7d0fe9) +* Add Commit.get_pulls() to pyi (#1958) (b4664705) +* Adding headers in GithubException is a breaking change (#1931) (d1644e33) + Version 1.55 (April 26, 2021) ----------------------------------- **Breaking Changes** diff --git a/setup.py b/setup.py index 67d876e2..0517f02f 100755 --- a/setup.py +++ b/setup.py @@ -44,7 +44,7 @@ import textwrap import setuptools -version = "1.55" +version = "1.56" if __name__ == "__main__":