diff --git a/CHANGELOG.md b/CHANGELOG.md index 91ed8ba..fda620c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +## v1.0.0 (2023-08-21) + +### BREAKING CHANGE + +- Ready for release + +### Feat + +- **main-check**: added checks using mkdocs + ## v0.1.0 (2023-08-21) ### Feat diff --git a/pyproject.toml b/pyproject.toml index dd22b5b..1c3bba6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "check_mkdocs" -version = "0.1.0" +version = "1.0.0" description = "Simple check/command-line tool that parses, validates and loads configuration, builds the mkdocs project documentation, and serves it via a web server" readme = "README.md" authors = ["Rodrigo Gonzalez "] @@ -44,7 +44,7 @@ mkdocstrings = {extras = ["optimize", "python"], version = "^0.22.0"} [tool.commitizen] name = "cz_conventional_commits" -version = "0.1.0" +version = "1.0.0" tag_format = "v$version" version_type = "semver" update_changelog_on_bump = true diff --git a/src/check_mkdocs/__init__.py b/src/check_mkdocs/__init__.py index d97c46e..cfcab2b 100644 --- a/src/check_mkdocs/__init__.py +++ b/src/check_mkdocs/__init__.py @@ -1,5 +1,5 @@ from check_mkdocs.check_mkdocs import main -__version__ = "0.1.0" +__version__ = "1.0.0" __all__ = ["main", "__version__"]