From c2f7e4c7cc9b3e4e960c75768e485c030cd7aa80 Mon Sep 17 00:00:00 2001 From: andrei Date: Tue, 24 Oct 2017 16:57:59 -0700 Subject: [PATCH] Bump dependency versions and release 0.0.12-rc.1 --- CHANGELOG.md | 20 +++++++++++++++++++- disco/__init__.py | 2 +- requirements.txt | 8 ++++---- setup.py | 2 +- 4 files changed, 25 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1227110..dac6944 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,30 @@ # CHANGELOG -## v0.0.12 +## v0.0.12-rc.1 + +### Additions + +- Added support for `Guild.system_channel_id` and `GUILD_MEMBER_JOIN` system message +- Added `Guild.create_category`, `Guild.create_text_channel` and `Guild.create_voice_channel` +- Added `Channel.create_text_channel` and `Channel.create_voice_channel` which can be called only on category channels to add sub-channels ### Fixes +- Fixed the `__str__` method for Channel's displaying (useless) unset data for DMs +- Fixed a bug with `MessageIterator` related to iterating before or after an ID of 0 +- Fixed incorrect field name (`icon_proxy_url` vs `proxy_icon_url`) in MessageEmbedAuthor model +- Fixed bugs related to creating and deleting pinned messages +- Fixed `GuildBan.reason` incorrectly handling unicode reasons - Fixed `Paginator` throwing an exception when reaching the end of pagination, instead of just ending its iteration - Fixed `Paginator` defaulting to start at 0 for all iterations +### Etc + +- **BREAKING** Refactor the way Role's are managed and updated. You should update your code to use `Role.update` +- **BREAKING** Renamed `Model.update` to `Model.inplace_update`. You should not have to worry about this change unless you explicitly call that method +- **DEPRECATION** Deprecated the use of `Guild.create_channel`. You should use the explicit channel type creation methods added in this release +- Expanded `APIClient.guilds_roles_create` to handle more attributes + ## v0.0.11 ### Additions diff --git a/disco/__init__.py b/disco/__init__.py index c0c3aeb..49a80cd 100644 --- a/disco/__init__.py +++ b/disco/__init__.py @@ -1 +1 @@ -VERSION = '0.0.11' +VERSION = '0.0.12-rc.1' diff --git a/requirements.txt b/requirements.txt index 15a6f79..c6d70fa 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ gevent==1.2.2 -holster==1.0.16 -requests==2.13.0 -six==1.10.0 -websocket-client==0.40.0 +holster==1.1.0 +requests==2.18.4 +six==1.11.0 +websocket-client==0.44.0 diff --git a/setup.py b/setup.py index 625067a..1d16478 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ extras_require = { 'voice': ['pynacl==1.1.2'], 'http': ['flask==0.12.2'], 'yaml': ['pyyaml==3.12'], - 'music': ['youtube_dl>=2017.8.23'], + 'music': ['youtube_dl>=2017.10.20'], 'performance': ['erlpack==0.3.2', 'ujson==1.35'], 'sharding': ['gipc==0.6.0'], 'docs': ['biblio==0.0.4'],