diff --git a/CHANGELOG.md b/CHANGELOG.md index 8e82230..f0f0641 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,26 @@ +## v0.2.0 (2023-02-27) + +### Feat + +- use the fonts from the NPM distrib (#17) +- add support for fa6 (#16) +- use fa6 and continue supports for all icon definitiones +- support all icons definitions +- install fontawesome package from npm at built time (#11) + +### Fix + +- use fonts directly from the npm package +- solved the building issues (#10) +- update gitignore + +### Refactor + +- use r string for latex commands +- typo in the test file +- mypy solution +- fix pre-commit warnings + ## v0.1.2 (2022-01-25) ### Fix diff --git a/pyproject.toml b/pyproject.toml index 5ec934a..67700e2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "sphinx-icon" -version = "0.1.2" +version = "0.2.0" description = "A sphinx custom role to embed inline fontawesome incon in the latex and html outputs" requires-python = ">=3.6.9" dependencies = ["sphinx", "pyyaml"] @@ -88,7 +88,7 @@ warn_redundant_casts = true changelog_file = "CHANGELOG.md" tag_format = "v$major.$minor.$patch$prerelease" update_changelog_on_bump = true -version = "0.1.2" +version = "0.2.0" version_files = [ "pyproject.toml:version", "sphinxcontrib/icon/__init__.py:__version__" diff --git a/sphinxcontrib/icon/__init__.py b/sphinxcontrib/icon/__init__.py index b3283e8..0476148 100644 --- a/sphinxcontrib/icon/__init__.py +++ b/sphinxcontrib/icon/__init__.py @@ -7,7 +7,7 @@ from .font_handler import Fontawesome from .icon import _NODE_VISITORS, Icon, icon_node -__version__ = "0.1.2" +__version__ = "0.2.0" __author__ = "Pierrick Rambaud" __email__ = "pierrick.rambaud49@gmail.com"