From 57f69681ef6107af8d0564ea196a7509ca24ead6 Mon Sep 17 00:00:00 2001 From: Richard Kolkovich Date: Thu, 17 May 2018 08:13:43 -0400 Subject: [PATCH] bump version to 0.11.0 (closes #243) --- CHANGELOG | 15 +++++++++++++++ CHANGELOG.md | 16 ++++++++++++++++ setup.py | 2 +- 3 files changed, 32 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index 153b791f..2bfbf6c8 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -293,3 +293,18 @@ boards fetch_actions pep8 fix add board fetch_actions docstring prep for 0.9.0 (fixes #184) prep for 0.9.0 + +v0.11.0 + +Add basic support for custom fields +Add set_organization method to Board object to work with organizations +commit check +Fix lazy loading in Card +Inject request +Add get_boards method to Member object with organization support +Update trellolist.py +Added support to get subscription status for lists as well as subscribe/unsubscribe from lists +List, add, and delete stars. +add remove_member and add_member methods to Organization object +untested star implementation +Adds method to delete label from board diff --git a/CHANGELOG.md b/CHANGELOG.md index eb6cc301..6cc6f84a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -294,3 +294,19 @@ [view](https://github.com/sarumont/py-trello/commit/451bf8bea9bdfb488fc0c32476d44af0dd7f543e) • add board fetch_actions docstring [view](https://github.com/sarumont/py-trello/commit/72a889d5138c9d56cf49fa639f14806b9f8e9049) • prep for 0.9.0 (fixes #184) [view](https://github.com/sarumont/py-trello/commit/92637e1e5a5f490ef80012e64c7319ee38f65924) • prep for 0.9.0 + + +**0.11.0** + +[view](https://github.com/sarumont/py-trello/commit/f6021e79f2cb986cd2150bf23829d99ae6ecf361) • Add basic support for custom fields +[view](https://github.com/sarumont/py-trello/commit/2ba36c399635eec07fd0284a0b49a153146254dd) • Add set_organization method to Board object to work with organizations +[view](https://github.com/sarumont/py-trello/commit/1e3b313c0d964988438e616217ceddb68f72f986) • commit check +[view](https://github.com/sarumont/py-trello/commit/47834a2a0b5efa0e4b3ef23f6e311d5ae009fca5) • Fix lazy loading in Card +[view](https://github.com/sarumont/py-trello/commit/551e923d41b1952f3a88e51573c07cc21c6490ea) • Inject request +[view](https://github.com/sarumont/py-trello/commit/df1b2903464456f732710187c1c1634e269cd547) • Add get_boards method to Member object with organization support +[view](https://github.com/sarumont/py-trello/commit/2e1d93945f35301cfb2639cebe1d231ac3417cb2) • Update trellolist.py +[view](https://github.com/sarumont/py-trello/commit/1a6b0e54689585e198dd6aa864dc8c70e9b44fd3) • Added support to get subscription status for lists as well as subscribe/unsubscribe from lists +[view](https://github.com/sarumont/py-trello/commit/1699057ccddbc9f7261912beec05fd945453b72d) • List, add, and delete stars. +[view](https://github.com/sarumont/py-trello/commit/006e7ab0b66c13f8f104de165fa3b96b7c01105b) • add remove_member and add_member methods to Organization object +[view](https://github.com/sarumont/py-trello/commit/f9ceb4ee6e6000c67427d1f5b837571c36728bbf) • untested star implementation +[view](https://github.com/sarumont/py-trello/commit/64a1de3863f6ecd3b0bada26b0f69c21bbb70cac) • Adds method to delete label from board diff --git a/setup.py b/setup.py index 3ca12a55..68a3e1a1 100755 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ setup( name="py-trello", - version="0.10.0", + version="0.11.0", description='Python wrapper around the Trello API', long_description=open('README.rst').read(),