diff --git a/CHANGELOG.md b/CHANGELOG.md index 8aeb6bb..e8e26a3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.1.0-alpha.5 + +- Add missing typehints for decode_track (@thenishantsapkota) +- Use the actual ConnectionInfo type (@vicky5124) +- Update dependencies (@vicky5124) +- Support ARM 32 bit (@vicky5124) +- Fix some deadlockings (@vicky5124) + ## 0.1.0-alpha.4 - Update lightbulb example to use lightbulb v2 (@neonjonn) diff --git a/Cargo.toml b/Cargo.toml index f54e59b..504eb20 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "lavasnek_rs" -version = "0.1.0-alpha.4" +version = "0.1.0-alpha.5" edition = "2018" authors = ["vicky5124 "] readme = "README.md" diff --git a/lavasnek_rs/__init__.py b/lavasnek_rs/__init__.py index 40d6efc..8420812 100644 --- a/lavasnek_rs/__init__.py +++ b/lavasnek_rs/__init__.py @@ -20,7 +20,7 @@ from .lavasnek_rs import * -__version__ = "0.1.0-alpha.4" +__version__ = "0.1.0-alpha.5" __author__ = "vicky5124 " __license__ = "MPL-2.0" diff --git a/pyproject.toml b/pyproject.toml index 54ff309..631f709 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "lavasnek_rs" -version = "0.1.0-alpha.4" +version = "0.1.0-alpha.5" description = "A lavalink-rs wrapper for any python async library" authors = ["vicky5124 "] readme = "README.md" diff --git a/setup.py b/setup.py index 0c9d4af..c4e5f24 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setup( name="lavasnek_rs", author="vicky5124 ", - version="0.1.0-alpha.4", + version="0.1.0-alpha.5", description="A lavalink-rs wrapper for any python async library", long_description=open("README.md", encoding="utf-8").read(), long_description_content_type="text/markdown",