From 2c97823a9595ca1bc6fb9a873d89baba11a8d104 Mon Sep 17 00:00:00 2001 From: Wan Liuyang Date: Sun, 19 Aug 2018 11:32:31 +0800 Subject: [PATCH] Publish version 1.41 --- doc/changes.rst | 29 +++++++++++++++++++++++++++++ setup.py | 2 +- 2 files changed, 30 insertions(+), 1 deletion(-) diff --git a/doc/changes.rst b/doc/changes.rst index 94e2a0b9..c2c09706 100644 --- a/doc/changes.rst +++ b/doc/changes.rst @@ -4,6 +4,35 @@ Change log Stable versions ~~~~~~~~~~~~~~~ +Version 1.41 (August 19, 2018) +----------------------------------- + +**BUGFIX** + +* ``Repository.get_archive_link`` will now NOT follow HTTP redirect and return the url instead (#858) (43d325a5) +* Fixed ``Gistfile.content`` (#486) (e1df09f7) +* Restored NamedUser.contributions attribute (#865) (b91dee8d) + +New features + +* Add support for repository topics (#832) (c6802b51) +* Branch Protection API overhaul (#790) (171cc567) + + + (**breaking**) Removed Repository.protect_branch + + Add `BranchProtection `__ + + Add `RequiredPullRequestReviews `__ + + Add `RequiredStatusChecks `__ + + Add ``Branch.get_protection``, ``Branch.get_required_pull_request_reviews``, ``Branch.get_required_status_checks``, etc + +Improvements + +* Add missing arguments to ``Repository.edit`` (#844) (29d23151) +* Add missing properties to Repository (#842) (2b352fb3) +* Adding archival support for ``Repository.edit`` (#843) (1a90f5db) +* Add ``tag_name`` and ``target_commitish`` arguments to ``GitRelease.update_release`` (#834) (790f7dae) +* Allow editing of Team descriptions (#839) (c0021747) +* Add description to Organizations (#838) (1d918809) + Version 1.40 (June 26, 2018) ----------------------------------- * Major enhancement: use requests for HTTP instead of httplib (#664) (9aed19dd) diff --git a/setup.py b/setup.py index 7b36c46d..5613b71a 100755 --- a/setup.py +++ b/setup.py @@ -44,7 +44,7 @@ import setuptools import textwrap -version = "1.40" +version = "1.41" if __name__ == "__main__":