Skip to content

Commit

Permalink
Prepare v3.3.0 for release
Browse files Browse the repository at this point in the history
  • Loading branch information
hypergonial committed Nov 22, 2023
1 parent 3ec5e47 commit adad383
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
7 changes: 7 additions & 0 deletions docs/source/changelogs/v3.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ Versions 3.0+ Changelog

These are all the changelogs for stable releases of hikari-miru (version 3.0.0 to present).

Version 3.3.0
=============

- Add support for Python 3.12
- Improve Context typing in callbacks for better typechecking experience when using custom contexts.
- Minor changes to the type signature of ``ModalContext.get_value_by_id()`` and ``ModalContext.get_value_by_predicate()``

Version 3.2.2
=============

Expand Down
4 changes: 1 addition & 3 deletions miru/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,6 @@
"RawModalContext",
"install",
"uninstall",
"load",
"unload",
"Button",
"button",
"Event",
Expand Down Expand Up @@ -50,7 +48,7 @@
"get_view",
)

__version__ = "3.2.2"
__version__ = "3.3.0"

# MIT License
#
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
hikari>=2.0.0.dev118
hikari>=2.0.0.dev122
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def parse_requirements_file(path: str) -> t.List[str]:
':sys_platform=="win32"': ["colorama"],
"docs": parse_requirements_file("doc_requirements.txt"),
},
python_requires=">=3.8.0,<3.12",
python_requires=">=3.8.0,<3.13",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Framework :: AsyncIO",
Expand Down

0 comments on commit adad383

Please sign in to comment.