aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Hassan Abouelela <[email protected]>2022-04-26 13:17:25 +0400
committerGravatar GitHub <[email protected]>2022-04-26 13:17:25 +0400
commita89043f08a7eec136e29f7e34e84c620f066ffea (patch)
treea08452f1cc54b49ae7ca46ee7a63ff30f3afdc3c
parentMerge pull request #69 from python-discord/actually-use-statsd_url (diff)
parentBump d.py to fix Guild.chunk() (diff)
Merge pull request #72 from python-discord/bump-d.pyv6.4.0
Bump d.py to fix Guild.chunk()
-rw-r--r--CHANGELOG.md4
-rw-r--r--poetry.lock12
-rw-r--r--pyproject.toml4
3 files changed, 12 insertions, 8 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index e819feae..3a6841cb 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,9 @@
# Changelog
+## 6.4.0 26th April 2022
+- Feature: Bump discord.py to `[5a06fa5](https://github.com/Rapptz/discord.py/tree/5a06fa5f3e28d2b7191722e1a84c541560008aea)`
+ - Notably, one of the commits in this bump dynamically extends the timeout of `Guild.chunk()` based on the number or members, so it should actually work on our guild now.
+
## 6.3.2 25th April 2022
- Fix: Actually use `statsd_url` when it gets passed to `BotBase`.
diff --git a/poetry.lock b/poetry.lock
index 94a8dae3..18bff933 100644
--- a/poetry.lock
+++ b/poetry.lock
@@ -205,7 +205,7 @@ voice = ["PyNaCl (>=1.3.0,<1.6)"]
[package.source]
type = "url"
-url = "https://github.com/Rapptz/discord.py/archive/987235d5649e7c2b1a927637bab6547244ecb2cf.zip"
+url = "https://github.com/Rapptz/discord.py/archive/5a06fa5f3e28d2b7191722e1a84c541560008aea.zip"
[[package]]
name = "distlib"
version = "0.3.4"
@@ -641,11 +641,11 @@ python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
[[package]]
name = "pygments"
-version = "2.11.2"
+version = "2.12.0"
description = "Pygments is a syntax highlighting package written in Python."
category = "dev"
optional = false
-python-versions = ">=3.5"
+python-versions = ">=3.6"
[[package]]
name = "pyparsing"
@@ -1058,7 +1058,7 @@ async-rediscache = ["async-rediscache"]
[metadata]
lock-version = "1.1"
python-versions = "3.9.*"
-content-hash = "ad5eb81c0bb4d4f8211d6598047853585ec910eded7aaa95fa656ac5e0c74766"
+content-hash = "692ca3c61be8da1e1e5d052fd4bb4afa24bac878f20305216c8b9ca45e5c3b1b"
[metadata.files]
aiohttp = [
@@ -1641,8 +1641,8 @@ pyflakes = [
{file = "pyflakes-2.4.0.tar.gz", hash = "sha256:05a85c2872edf37a4ed30b0cce2f6093e1d0581f8c19d7393122da7e25b2b24c"},
]
pygments = [
- {file = "Pygments-2.11.2-py3-none-any.whl", hash = "sha256:44238f1b60a76d78fc8ca0528ee429702aae011c265fe6a8dd8b63049ae41c65"},
- {file = "Pygments-2.11.2.tar.gz", hash = "sha256:4e426f72023d88d03b2fa258de560726ce890ff3b630f88c21cbb8b2503b8c6a"},
+ {file = "Pygments-2.12.0-py3-none-any.whl", hash = "sha256:dc9c10fb40944260f6ed4c688ece0cd2048414940f1cea51b8b226318411c519"},
+ {file = "Pygments-2.12.0.tar.gz", hash = "sha256:5eb116118f9612ff1ee89ac96437bb6b49e8f04d8a13b514ba26f620208e26eb"},
]
pyparsing = [
{file = "pyparsing-3.0.8-py3-none-any.whl", hash = "sha256:ef7b523f6356f763771559412c0d7134753f037822dad1b16945b7b846f7ad06"},
diff --git a/pyproject.toml b/pyproject.toml
index 43a214a0..74526f9e 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,6 +1,6 @@
[tool.poetry]
name = "bot-core"
-version = "6.3.2"
+version = "6.4.0"
description = "Bot-Core provides the core functionality and utilities for the bots of the Python Discord community."
authors = ["Python Discord <[email protected]>"]
license = "MIT"
@@ -16,7 +16,7 @@ exclude = ["tests", "tests.*"]
[tool.poetry.dependencies]
python = "3.9.*"
-"discord.py" = {url = "https://github.com/Rapptz/discord.py/archive/987235d5649e7c2b1a927637bab6547244ecb2cf.zip"}
+"discord.py" = {url = "https://github.com/Rapptz/discord.py/archive/5a06fa5f3e28d2b7191722e1a84c541560008aea.zip"}
async-rediscache = { version = "0.2.0", extras = ["fakeredis"], optional = true }
statsd = "3.3.0"