Skip to content

Commit

Permalink
Bump to v0.2.2 #patch
Browse files Browse the repository at this point in the history
  • Loading branch information
No767 committed Dec 9, 2023
1 parent 4ddd9ab commit 58bacbf
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 10 deletions.
12 changes: 5 additions & 7 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
4 changes: 2 additions & 2 deletions discord/ext/ipcx/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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"}
]
Expand Down

0 comments on commit 58bacbf

Please sign in to comment.