diff --git a/CHANGELOG.rst b/CHANGELOG.rst new file mode 100644 index 0000000..2bb9ba9 --- /dev/null +++ b/CHANGELOG.rst @@ -0,0 +1,7 @@ +v0.1.0 (2025-06-02) +=================== + +Feat +---- + +- **cli**: add base CLI command diff --git a/pyproject.toml b/pyproject.toml index 19eefc8..af179a4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "worktimer" -version = "0.0.0" +version = "0.1.0" description = "Simple tracker of time spent on the job" authors = ["truthless-dev "] license = "MIT" @@ -46,7 +46,7 @@ major_version_zero = true tag_format = "v$version" template = "CHANGELOG.rst.j2" update_changelog_on_bump = true -version = "0.0.0" +version = "0.1.0" version_files = ["pyproject.toml:version"] [build-system]