Skip to content

Commit

Permalink
bump: version 0.1.2 → 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
12rambau committed Feb 27, 2023
1 parent e6b6ba4 commit 9e8a7f6
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 3 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down Expand Up @@ -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__"
Expand Down
2 changes: 1 addition & 1 deletion sphinxcontrib/icon/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__ = "[email protected]"

Expand Down

0 comments on commit 9e8a7f6

Please sign in to comment.