bump(release): v0.6.1 → v0.7.0

This commit is contained in:
Nathaniel Landau
2023-03-11 16:59:27 -05:00
parent 4e49445b08
commit 7f431353e1
3 changed files with 15 additions and 3 deletions

View File

@@ -1,3 +1,15 @@
## v0.7.0 (2023-03-11)
### Feat
- transpose metadata between frontmatter and inline
- select insert location for new inline metadata
### Fix
- exit after committing changes
- fix typo and sort order of options
## v0.6.1 (2023-03-03)
### Fix

View File

@@ -11,7 +11,7 @@
name = "obsidian-metadata"
readme = "README.md"
repository = "https://github.com/natelandau/obsidian-metadata"
version = "0.6.1"
version = "0.7.0"
[tool.poetry.scripts] # https://python-poetry.org/docs/pyproject/#scripts
obsidian-metadata = "obsidian_metadata.cli:app"
@@ -142,7 +142,7 @@
changelog_incremental = true
tag_format = "v$version"
update_changelog_on_bump = true
version = "0.6.1"
version = "0.7.0"
version_files = ["pyproject.toml:version", "src/obsidian_metadata/__version__.py:__version__"]
[tool.interrogate]

View File

@@ -1,2 +1,2 @@
"""obsidian-metadata version."""
__version__ = "0.6.1"
__version__ = "0.7.0"