Skip to content

Commit

Permalink
bump version to v202406.1035
Browse files Browse the repository at this point in the history
  • Loading branch information
mbarkhau committed Jun 24, 2024
1 parent 473f55a commit f868246
Show file tree
Hide file tree
Showing 11 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
MIT License Copyright (c) 2019-2021 Manuel Barkhau (mbarkhau@gmail.com)
MIT License Copyright (c) 2019-2024 Manuel Barkhau (mbarkhau@gmail.com)

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Project/Repo:

[![MIT License][license_img]][license_ref]
[![Supported Python Versions][pyversions_img]][pyversions_ref]
[![CalVer v202112.1034][version_img]][version_ref]
[![CalVer v202406.1035][version_img]][version_ref]
[![PyPI Version][pypi_img]][pypi_ref]
[![PyPI Downloads][downloads_img]][downloads_ref]

Expand All @@ -44,7 +44,7 @@ Code Quality/CI:
$ pip install markdown-katex
...
$ python -m markdown_katex --version
markdown-katex version: v202112.1034 (using binary: /usr/local/bin/npx --no-install katex)
markdown-katex version: v202406.1035 (using binary: /usr/local/bin/npx --no-install katex)
0.15.1
```

Expand Down Expand Up @@ -196,7 +196,7 @@ html = tex2html(tex_text, options)
[downloads_img]: https://pepy.tech/badge/markdown-katex/month
[downloads_ref]: https://pepy.tech/project/markdown-katex

[version_img]: https://img.shields.io/static/v1.svg?label=CalVer&message=v202112.1034&color=blue
[version_img]: https://img.shields.io/static/v1.svg?label=CalVer&message=v202406.1035&color=blue
[version_ref]: https://pypi.org/project/bumpver/

[pyversions_img]: https://img.shields.io/pypi/pyversions/markdown-katex.svg
Expand Down
2 changes: 1 addition & 1 deletion license.header
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Individual files contain the following tag instead of the full license text.
This file is part of the markdown-katex project
https://github.com/mbarkhau/markdown-katex

Copyright (c) 2019-2021 Manuel Barkhau (mbarkhau@gmail.com) - MIT License
Copyright (c) 2019-2024 Manuel Barkhau (mbarkhau@gmail.com) - MIT License
SPDX-License-Identifier: MIT

This enables machine processing of license information based on the SPDX
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ addopts = --doctest-modules


[bumpver]
current_version = v202112.1034
current_version = v202406.1035
version_pattern = "vYYYY0M.BUILD[-TAG]"
commit = True
tag = True
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def read(*sub_paths):
author="Manuel Barkhau",
author_email="mbarkhau@gmail.com",
url="https://github.com/mbarkhau/markdown-katex",
version="202112.1034",
version="202406.1035",
keywords="markdown katex extension",
description="katex extension for Python Markdown",
long_description=long_description,
Expand Down
4 changes: 2 additions & 2 deletions src/markdown_katex/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This file is part of the markdown-katex project
# https://github.com/mbarkhau/markdown-katex
#
# Copyright (c) 2019-2021 Manuel Barkhau (mbarkhau@gmail.com) - MIT License
# Copyright (c) 2019-2024 Manuel Barkhau (mbarkhau@gmail.com) - MIT License
# SPDX-License-Identifier: MIT
"""markdown_katex extension.
Expand All @@ -10,7 +10,7 @@
"""


__version__ = "v202112.1034"
__version__ = "v202406.1035"

from markdown_katex.wrapper import tex2html
from markdown_katex.wrapper import get_bin_cmd
Expand Down
2 changes: 1 addition & 1 deletion src/markdown_katex/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# This file is part of the markdown-katex project
# https://github.com/mbarkhau/markdown-katex
#
# Copyright (c) 2019-2021 Manuel Barkhau (mbarkhau@gmail.com) - MIT License
# Copyright (c) 2019-2024 Manuel Barkhau (mbarkhau@gmail.com) - MIT License
# SPDX-License-Identifier: MIT
import sys
import json
Expand Down
2 changes: 1 addition & 1 deletion src/markdown_katex/extension.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This file is part of the markdown-katex project
# https://github.com/mbarkhau/markdown-katex
#
# Copyright (c) 2019-2021 Manuel Barkhau (mbarkhau@gmail.com) - MIT License
# Copyright (c) 2019-2024 Manuel Barkhau (mbarkhau@gmail.com) - MIT License
# SPDX-License-Identifier: MIT
import re
import json
Expand Down
2 changes: 1 addition & 1 deletion src/markdown_katex/html.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This file is part of the markdown-katex project
# https://github.com/mbarkhau/markdown-katex
#
# Copyright (c) 2019-2021 Manuel Barkhau (mbarkhau@gmail.com) - MIT License
# Copyright (c) 2019-2024 Manuel Barkhau (mbarkhau@gmail.com) - MIT License
# SPDX-License-Identifier: MIT
_STYLESHEET_LINK = """
<link rel="stylesheet"
Expand Down
2 changes: 1 addition & 1 deletion src/markdown_katex/wrapper.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This file is part of the markdown-katex project
# https://github.com/mbarkhau/markdown-katex
#
# Copyright (c) 2019-2021 Manuel Barkhau (mbarkhau@gmail.com) - MIT License
# Copyright (c) 2019-2024 Manuel Barkhau (mbarkhau@gmail.com) - MIT License
# SPDX-License-Identifier: MIT

# NOTE (mb 2019-05-16): This module is substantially shared with the
Expand Down
2 changes: 1 addition & 1 deletion test/test_mdkatex.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# This file is part of markdown-katex.
# https://gitlab.com/mbarkhau/markdown-katex
#
# Copyright (c) 2019-2021 Manuel Barkhau (mbarkhau@gmail.com) - MIT License
# Copyright (c) 2019-2024 Manuel Barkhau (mbarkhau@gmail.com) - MIT License
# SPDX-License-Identifier: MIT

# pytest fixtures work this way
Expand Down

0 comments on commit f868246

Please sign in to comment.