Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare for v2.12.0 #296

Merged
merged 2 commits into from
May 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
emoji
=====

v2.12.0 (2024-05-19)
-----
* Move type annotations inline
* Use `functools.lru_cache` for looking up emoji by name with `get_emoji_by_name()`
* Move internal functions `get_emoji_unicode_dict()`, `get_aliases_unicode_dict()`, `_EMOJI_UNICODE` and `_ALIASES_UNICODE` to `testutils`
* Add type hints to tests
* Remove obsolete dev dependency `coveralls`

v2.11.1 (2024-04-21)
-----
* Add missing stubs for purely_emoji
Expand All @@ -9,7 +17,7 @@ v2.11.0 (2024-03-26)
-----
* Update to Unicode v15.1

v2.10.1 (TBD)
v2.10.1 (2024-01-31)
-----
* Fix slow import when debugging in Python 3.12 #280

Expand Down
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@ include LICENSE.txt
include MANIFEST.in
include README.rst
include CHANGES.md
include utils/testutils.py
recursive-include tests *.py
2 changes: 1 addition & 1 deletion emoji/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
'EMOJI_DATA', 'STATUS', 'LANGUAGES',
]

__version__ = '2.11.1'
__version__ = '2.12.0'
__author__ = 'Taehoon Kim, Kevin Wurster'
__email__ = '[email protected]'
# and [email protected], [email protected]
Expand Down
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ repository = "https://github.com/carpedm20/emoji/"
dev = [
"pytest>=7.4.4",
"coverage",
"coveralls",
]

[tool.setuptools.packages.find]
Expand Down