diff --git a/changelog.md b/changelog.md index aef495e..6f45bbf 100644 --- a/changelog.md +++ b/changelog.md @@ -1,15 +1,13 @@ -# v0.2.1 - ## Added -- Mark this package as typed +- None ## Changed -- Fixed multiple GH workflows breaking -- Split workflows and housecleaning -- A ton of bugfixing commits for workflows breaking (I'm still learning this stuff) -- Make docs finally work +- Fix `ipcx.Client` requests failing due to closing transport (#30) +- `aiohttp.ClientSession` is now bound to the ipcx.Client class, and a helper method that is undocumented is introduced to aid with the creation of aiohttp.ClientSession (b27807d49325acd2e6c14da6129d573153bb33b6) +- Logic for obtaining the port if not set has been moved to a helper method called get_port, which will obtain the port by connecting to the multicast server if not found (b27807d49325acd2e6c14da6129d573153bb33b6) +- Updated examples provided ## Removed diff --git a/discord/ext/ipcx/__init__.py b/discord/ext/ipcx/__init__.py index 24f690c..5aa81de 100644 --- a/discord/ext/ipcx/__init__.py +++ b/discord/ext/ipcx/__init__.py @@ -12,7 +12,7 @@ __author__ = "Ext-Creators, No767" __license__ = "Apache-2.0" __copyright__ = "(c) 2020-present Ext-Creators, No767" -__version__ = "0.2.1" +__version__ = "0.2.2" from typing import Literal, NamedTuple @@ -32,7 +32,7 @@ def __str__(self) -> str: return f"{self.major}.{self.minor}.{self.micro}-{self.releaselevel}" -version_info = VersionInfo(major=0, minor=2, micro=1, releaselevel="final") +version_info = VersionInfo(major=0, minor=2, micro=2, releaselevel="final") # Since this class is always exported, we just want to delete it at the end # So others can't use it diff --git a/pyproject.toml b/pyproject.toml index bcb6e8f..0644e6f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "discord-ext-ipcx" description = "Maintained and updated version of discord-ext-ipc for discord.py v2" -version = "0.2.1" +version = "0.2.2" authors = [ { name="No767", email="73260931+No767@users.noreply.github.com"} ]