Skip to content

Commit

Permalink
bump: version 0.1.0 → 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
RodrigoGonzalez committed Aug 22, 2023
1 parent 695093c commit f1686a0
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/check_mkdocs/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from check_mkdocs.check_mkdocs import main

__version__ = "0.1.0"
__version__ = "1.0.0"

__all__ = ["main", "__version__"]

0 comments on commit f1686a0

Please sign in to comment.