bump(release): v0.10.0 → v0.11.0

This commit is contained in:
Nathaniel Landau
2023-03-24 15:50:59 -04:00
parent ffdac91537
commit c75d18200e
3 changed files with 9 additions and 3 deletions

View File

@@ -1,3 +1,9 @@
## v0.11.0 (2023-03-24)
### Feat
- add `--import-csv` option to cli
## v0.10.0 (2023-03-21)
### Feat

View File

@@ -11,7 +11,7 @@
name = "obsidian-metadata"
readme = "README.md"
repository = "https://github.com/natelandau/obsidian-metadata"
version = "0.10.0"
version = "0.11.0"
[tool.poetry.scripts] # https://python-poetry.org/docs/pyproject/#scripts
obsidian-metadata = "obsidian_metadata.cli:app"
@@ -57,7 +57,7 @@
changelog_incremental = true
tag_format = "v$version"
update_changelog_on_bump = true
version = "0.10.0"
version = "0.11.0"
version_files = ["pyproject.toml:version", "src/obsidian_metadata/__version__.py:__version__"]
[tool.coverage.report] # https://coverage.readthedocs.io/en/latest/config.html#report

View File

@@ -1,2 +1,2 @@
"""obsidian-metadata version."""
__version__ = "0.10.0"
__version__ = "0.11.0"