Skip to content

Commit 8a33b5b

Browse files
committed
bump: version 0.2.1 → 0.2.2
1 parent e909bdb commit 8a33b5b

File tree

3 files changed

+21
-3
lines changed

3 files changed

+21
-3
lines changed

CHANGELOG.md

+18
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
## v0.2.2 (2023-03-14)
2+
3+
### Fix
4+
5+
- support deprecated font names (#26)
6+
- supprt deprecated fonts
7+
- accept aliases of icon names (#25)
8+
- accept aliases but raise an error
9+
- display the source information in warning messages (#24)
10+
- make the location optional
11+
- add the location to warnings
12+
- point to the new conf.py
13+
14+
### Refactor
15+
16+
- add comments
17+
- improve warning messages
18+
119
## v0.2.1 (2023-02-27)
220

321
### Fix

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "sphinx-icon"
7-
version = "0.2.1"
7+
version = "0.2.2"
88
description = "A sphinx custom role to embed inline fontawesome incon in the latex and html outputs"
99
requires-python = ">=3.6.9"
1010
dependencies = ["sphinx", "pyyaml"]
@@ -88,7 +88,7 @@ warn_redundant_casts = true
8888
changelog_file = "CHANGELOG.md"
8989
tag_format = "v$major.$minor.$patch$prerelease"
9090
update_changelog_on_bump = true
91-
version = "0.2.1"
91+
version = "0.2.2"
9292
version_files = [
9393
"pyproject.toml:version",
9494
"sphinxcontrib/icon/__init__.py:__version__"

sphinxcontrib/icon/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from .font_handler import Fontawesome
88
from .icon import _NODE_VISITORS, Icon, icon_node
99

10-
__version__ = "0.2.1"
10+
__version__ = "0.2.2"
1111
__author__ = "Pierrick Rambaud"
1212
__email__ = "[email protected]"
1313

0 commit comments

Comments
 (0)