aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Chris Lovering <[email protected]>2023-06-26 09:42:26 +0100
committerGravatar Chris Lovering <[email protected]>2023-07-14 13:19:25 +0100
commit9e1ac4f80c3eab4ad90a0748a743394d8bfdadd0 (patch)
tree07034d2f9d87279b95983474521695fd1c63b454
parentUpdate get_or_fetch_channel's return type (#187) (diff)
Bump d.py to 2.3.1
-rw-r--r--docs/changelog.rst3
-rw-r--r--poetry.lock20
-rw-r--r--pyproject.toml4
3 files changed, 15 insertions, 12 deletions
diff --git a/docs/changelog.rst b/docs/changelog.rst
index a6b1d193..9abd475a 100644
--- a/docs/changelog.rst
+++ b/docs/changelog.rst
@@ -4,7 +4,10 @@
Changelog
=========
+
- :bug:`187` Fix :obj:`pydis_core.utils.channel.get_or_fetch_channel`'s return type to include :obj:`discord.abc.PrivateChannel` and :obj:`discord.Thread`.
+- :bug:`184` Bump Discord.py to :literal-url:`2.3.1 <https://github.com/Rapptz/discord.py/releases/tag/v2.3.1>`.
+
- :release:`9.9.2 <2nd July 2023>`
- :bug:`185` Update expiry label from 1 month to 30 days in paste service.
diff --git a/poetry.lock b/poetry.lock
index a4df68f0..f64786ef 100644
--- a/poetry.lock
+++ b/poetry.lock
@@ -493,13 +493,13 @@ toml = ["tomli"]
[[package]]
name = "discord-py"
-version = "2.3.0"
+version = "2.3.1"
description = "A Python wrapper for the Discord API"
optional = false
python-versions = ">=3.8.0"
files = [
- {file = "discord.py-2.3.0-py3-none-any.whl", hash = "sha256:3e9498967822ad4499f8f72deb9173f942d9827d92b6e4e4e7732d24f78f300c"},
- {file = "discord.py-2.3.0.tar.gz", hash = "sha256:c71066a30f037d069218e59092505c3e8945fd175e396a80748056d989756806"},
+ {file = "discord.py-2.3.1-py3-none-any.whl", hash = "sha256:149652f24da299706270bf8c03c2fcf80cf1caf3a480744c61d5b001688b380d"},
+ {file = "discord.py-2.3.1.tar.gz", hash = "sha256:8eb4fe66b5d503da6de3a8425e23012711dc2fbcd7a782107a92beac15ee3459"},
]
[package.dependencies]
@@ -1080,13 +1080,13 @@ files = [
[[package]]
name = "platformdirs"
-version = "3.7.0"
+version = "3.8.0"
description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"."
optional = false
python-versions = ">=3.7"
files = [
- {file = "platformdirs-3.7.0-py3-none-any.whl", hash = "sha256:cfd065ba43133ff103ab3bd10aecb095c2a0035fcd1f07217c9376900d94ba07"},
- {file = "platformdirs-3.7.0.tar.gz", hash = "sha256:87fbf6473e87c078d536980ba970a472422e94f17b752cfad17024c18876d481"},
+ {file = "platformdirs-3.8.0-py3-none-any.whl", hash = "sha256:ca9ed98ce73076ba72e092b23d3c93ea6c4e186b3f1c3dad6edd98ff6ffcca2e"},
+ {file = "platformdirs-3.8.0.tar.gz", hash = "sha256:b0cabcb11063d21a0b261d557acb0a9d2126350e63b70cdf7db6347baea456dc"},
]
[package.extras]
@@ -1369,13 +1369,13 @@ files = [
[[package]]
name = "redis"
-version = "4.5.5"
+version = "4.6.0"
description = "Python client for Redis database and key-value store"
optional = true
python-versions = ">=3.7"
files = [
- {file = "redis-4.5.5-py3-none-any.whl", hash = "sha256:77929bc7f5dab9adf3acba2d3bb7d7658f1e0c2f1cafe7eb36434e751c471119"},
- {file = "redis-4.5.5.tar.gz", hash = "sha256:dc87a0bdef6c8bfe1ef1e1c40be7034390c2ae02d92dcd0c7ca1729443899880"},
+ {file = "redis-4.6.0-py3-none-any.whl", hash = "sha256:e2b03db868160ee4591de3cb90d40ebb50a90dd302138775937f6a42b7ed183c"},
+ {file = "redis-4.6.0.tar.gz", hash = "sha256:585dc516b9eb042a619ef0a39c3d7d55fe81bdb4df09a52c9cdde0d07bf1aa7d"},
]
[package.dependencies]
@@ -1882,4 +1882,4 @@ async-rediscache = ["async-rediscache"]
[metadata]
lock-version = "2.0"
python-versions = "3.10.* || 3.11.*"
-content-hash = "e4efa190c50dc49c53b10e0ef165319d6f251d0eacc7f3521b12bfdbb7394acd"
+content-hash = "e0244675946bba44094ac2cda8bbfad9da58c03de7d01b227ce36ed52dfdbf71"
diff --git a/pyproject.toml b/pyproject.toml
index 85cbd600..abd852e7 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pydis_core"
-version = "9.9.1"
+version = "9.9.2"
description = "PyDis core provides core functionality and utility to the bots of the Python Discord community."
authors = ["Python Discord <[email protected]>"]
license = "MIT"
@@ -25,7 +25,7 @@ keywords = ["bot", "discord", "discord.py"]
[tool.poetry.dependencies]
python = "3.10.* || 3.11.*"
-"discord.py" = "2.3.0"
+"discord.py" = "2.3.1"
async-rediscache = { version = "1.0.0rc2", extras = ["fakeredis"], optional = true }
statsd = "4.0.1"
aiodns = "3.0.0"