Browse Source

Bump dependency versions and release 0.0.12-rc.1

pull/60/head v0.0.12-rc.1
andrei 8 years ago
parent
commit
c2f7e4c7cc
  1. 20
      CHANGELOG.md
  2. 2
      disco/__init__.py
  3. 8
      requirements.txt
  4. 2
      setup.py

20
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

2
disco/__init__.py

@ -1 +1 @@
VERSION = '0.0.11'
VERSION = '0.0.12-rc.1'

8
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

2
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'],

Loading…
Cancel
Save