Skip to content

Commit

Permalink
bump version to v202406.1023
Browse files Browse the repository at this point in the history
  • Loading branch information
mbarkhau committed Jun 21, 2024
1 parent d546edb commit 60c5174
Show file tree
Hide file tree
Showing 10 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2019-2021 Manuel Barkhau (mbarkhau@gmail.com)
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 in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Project/Repo:

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

Expand Down Expand Up @@ -128,7 +128,7 @@ The option `min_char_width` allows you to create diagrams of a uniform scale.
[downloads_img]: https://pepy.tech/badge/markdown-svgbob/month
[downloads_ref]: https://pepy.tech/project/markdown-svgbob

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

[pyversions_img]: https://img.shields.io/pypi/pyversions/markdown-svgbob.svg
Expand Down
2 changes: 1 addition & 1 deletion bootstrapit.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ MODULE_NAME="markdown_svgbob"
GIT_REPO_NAMESPACE="mbarkhau"
GIT_REPO_DOMAIN="gitlab.com"

PACKAGE_VERSION="v202112.1022"
PACKAGE_VERSION="v202406.1023"

# These must be valid (space separated) conda package names.
# A separate conda environment will be created for each of these.
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-svgbob project
https://gitlab.com/mbarkhau/markdown-svgbob

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 @@ -89,7 +89,7 @@ addopts = --doctest-modules


[bumpver]
current_version = v202112.1022
current_version = v202406.1023
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 @@ -42,7 +42,7 @@ def read(*sub_paths):
author="Manuel Barkhau",
author_email="mbarkhau@gmail.com",
url="https://github.com/mbarkhau/markdown-svgbob",
version="202112.1022",
version="202406.1023",
keywords="markdown svgbob extension",
description="svgbob extension for Python Markdown",
long_description=long_description,
Expand Down
4 changes: 2 additions & 2 deletions src/markdown_svgbob/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This file is part of the markdown-svgbob project
# https://github.com/mbarkhau/markdown-svgbob
#
# 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_svgbob extension.
Expand All @@ -10,7 +10,7 @@
diagrams in fenced code blocks.
"""

__version__ = "v202112.1022"
__version__ = "v202406.1023"


from markdown_svgbob.wrapper import text2svg
Expand Down
2 changes: 1 addition & 1 deletion src/markdown_svgbob/__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-svgbob project
# https://github.com/mbarkhau/markdown-svgbob
#
# 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 os
import sys
Expand Down
2 changes: 1 addition & 1 deletion src/markdown_svgbob/extension.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This file is part of the markdown-svgbob project
# https://github.com/mbarkhau/markdown-svgbob
#
# 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 copy
Expand Down
2 changes: 1 addition & 1 deletion src/markdown_svgbob/wrapper.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This file is part of the markdown-svgbob project
# https://github.com/mbarkhau/markdown-svgbob
#
# 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

0 comments on commit 60c5174

Please sign in to comment.