diff --git a/CHANGELOG.md b/CHANGELOG.md index 2c8f151..84b3805 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +## v0.3.0 (2023-01-30) + +### Feat + +- **application**: add new metadata to frontmatter (#9) + +### Fix + +- **application**: improve ux (#10) + ## v0.2.0 (2023-01-25) ### Feat diff --git a/pyproject.toml b/pyproject.toml index d97f2f0..77a99c5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,7 +11,7 @@ name = "obsidian-metadata" readme = "README.md" repository = "https://github.com/natelandau/obsidian-metadata" - version = "0.2.0" + version = "0.3.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.2.0" + version = "0.3.0" version_files = [ "pyproject.toml:version", "src/obsidian_metadata/__version__.py:__version__", diff --git a/src/obsidian_metadata/__version__.py b/src/obsidian_metadata/__version__.py index ad5e23f..d7d8410 100644 --- a/src/obsidian_metadata/__version__.py +++ b/src/obsidian_metadata/__version__.py @@ -1,2 +1,2 @@ """obsidian-metadata version.""" -__version__ = "0.2.0" +__version__ = "0.3.0"