Skip to content

Commit 085c3e6

Browse files
committed
fix: update version to 0.2.0 and enhance project metadata in pyproject.toml
1 parent 0dd235d commit 085c3e6

File tree

2 files changed

+18
-3
lines changed

2 files changed

+18
-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.1.0"
7+
__version__ = "0.2.0"

pyproject.toml

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,34 @@
11
[project]
22
name = "mkdocs-tech-radar"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
description = "A MkDocs plugin to generate a visual Tech Radar."
55
authors = [
6-
{ name = "thatmlopsguy", email = "your@email.com" }
6+
{ name = "thatmlopsguy" },
7+
]
8+
maintainers = [
9+
{ name = "thatmlopsguy" },
710
]
811
readme = "README.md"
912
license = "Apache-2.0"
1013
keywords = ["mkdocs", "mkdocs-plugin", "documentation", "tech-radar"]
14+
classifiers = [
15+
"Development Status :: 4 - Beta",
16+
"Programming Language :: Python :: 3",
17+
"Programming Language :: Python :: 3.12",
18+
"Framework :: MkDocs :: Plugin",
19+
"License :: OSI Approved :: Apache Software License",
20+
"Operating System :: OS Independent",
21+
]
1122
requires-python = ">=3.12"
1223
dependencies = [
1324
"mkdocs>=1.4.0",
1425
"jinja2>=3.0.0",
1526
]
1627

28+
[project.urls]
29+
Repository = "https://github.com/thatmlopsguy/mkdocs-tech-radar"
30+
Issues = "https://github.com/thatmlopsguy/mkdocs-tech-radar/issues"
31+
1732
[project.optional-dependencies]
1833
dev = [
1934
"pytest",

0 commit comments

Comments
 (0)