Skip to content

Commit a2bbea2

Browse files
committed
fix: update version to 0.2.1 in __init__.py and pyproject.toml
1 parent 085c3e6 commit a2bbea2

File tree

2 files changed

+14
-3
lines changed

2 files changed

+14
-3
lines changed

mkdocs_tech_radar/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
A MkDocs plugin to generate a visual Tech Radar as part of your documentation site.
55
"""
66

7-
__version__ = "0.2.0"
7+
__version__ = "0.2.1"

pyproject.toml

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "mkdocs-tech-radar"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
description = "A MkDocs plugin to generate a visual Tech Radar."
55
authors = [
66
{ name = "thatmlopsguy" },
@@ -16,7 +16,6 @@ classifiers = [
1616
"Programming Language :: Python :: 3",
1717
"Programming Language :: Python :: 3.12",
1818
"Framework :: MkDocs :: Plugin",
19-
"License :: OSI Approved :: Apache Software License",
2019
"Operating System :: OS Independent",
2120
]
2221
requires-python = ">=3.12"
@@ -184,3 +183,15 @@ filterwarnings = [
184183
"ignore::UserWarning",
185184
"ignore::DeprecationWarning",
186185
]
186+
187+
[tool.commitizen]
188+
name = "cz_conventional_commits"
189+
tag_format = "$version"
190+
version_scheme = "semver"
191+
version_provider = "pep621"
192+
update_changelog_on_bump = true
193+
major_version_zero = true
194+
195+
version_files = [
196+
"mkdocs_tech_radar/__init__.py:__version__",
197+
]

0 commit comments

Comments
 (0)