Skip to content
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
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -65,3 +65,6 @@ tmp
# IDEs & Editors
.idea
*~

# uv Python package manager
uv.lock
6 changes: 6 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
mkdocs-material-9.6.20 (2025-09-05)

* Fixed #8446: Deprecation warning as of Python 3.14 in Emoji extension
* Fixed #8440: `&` character not escaped in search highlighting
* Fixed #8439: FontAwesome icons color not set in social cards (regression)

mkdocs-material-9.6.19 (2025-09-07)

* Added support for Python 3.14
Expand Down
6 changes: 6 additions & 0 deletions docs/changelog/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

## Material for MkDocs

### 9.6.20 <small>September 15, 2025</small> { id="9.6.20" }

- Fixed #8446: Deprecation warning as of Python 3.14 in Emoji extension
- Fixed #8440: `&` character not escaped in search highlighting
- Fixed #8439: FontAwesome icons color not set in social cards (regression)

### 9.6.19 <small>September 7, 2025</small> { id="9.6.19" }

- Added support for Python 3.14
Expand Down
2 changes: 1 addition & 1 deletion material/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
# IN THE SOFTWARE.

__version__ = "9.6.19"
__version__ = "9.6.20"
3 changes: 1 addition & 2 deletions material/extensions/emoji.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@

from __future__ import annotations

import codecs
import functools
import material
import os
Expand Down Expand Up @@ -65,7 +64,7 @@ def to_svg(
# Load icon
@functools.lru_cache(maxsize = None)
def _load(file: str):
with codecs.open(file, encoding = "utf-8") as f:
with open(file, encoding = "utf-8") as f:
return f.read()

# Load twemoji index and add icons
Expand Down

This file was deleted.

This file was deleted.

Loading
Loading