bump(release): v0.0.0 → v0.1.0

This commit is contained in:
Nathaniel Landau
2023-01-22 17:03:00 +00:00
parent b7bcf74926
commit 6d26a41a36
3 changed files with 8 additions and 3 deletions

5
CHANGELOG.md Normal file
View File

@@ -0,0 +1,5 @@
## v0.1.0 (2023-01-22)
### Feat
- initial application release

View File

@@ -11,7 +11,7 @@
name = "obsidian-metadata"
readme = "README.md"
repository = "https://github.com/natelandau/obsidian-metadata"
version = "0.0.0"
version = "0.1.0"
[tool.poetry.scripts] # https://python-poetry.org/docs/pyproject/#scripts
obsidian-metadata = "obsidian_metadata.cli:app"
@@ -142,7 +142,7 @@
bump_message = "bump(release): v$current_version → v$new_version"
tag_format = "v$version"
update_changelog_on_bump = true
version = "0.0.0"
version = "0.1.0"
version_files = [
"pyproject.toml:version",
"src/obsidian_metadata/__version__.py:__version__",

View File

@@ -1,2 +1,2 @@
"""obsidian-metadata version."""
__version__ = "0.0.0"
__version__ = "0.1.0"