Skip to content
This repository has been archived by the owner on Jul 1, 2024. It is now read-only.

Commit

Permalink
bump(release): v0.9.0 → v0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
natelandau committed Mar 22, 2023
1 parent 4bf1acb commit 8968127
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 3 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
## v0.10.0 (2023-03-21)

### Feat

- add `--export-template` cli option

### Fix

- `--export-template` correctly exports all notes
- `--export-csv` exports csv not json
- **csv-import**: fail if `type` does not validate

### Refactor

- pave the way for non-regex key/value deletions
- remove unused code
- cleanup rename and delete from dict functions

## v0.9.0 (2023-03-20)

### Feat
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
name = "obsidian-metadata"
readme = "README.md"
repository = "https://github.com/natelandau/obsidian-metadata"
version = "0.9.0"
version = "0.10.0"

[tool.poetry.scripts] # https://python-poetry.org/docs/pyproject/#scripts
obsidian-metadata = "obsidian_metadata.cli:app"
Expand Down Expand Up @@ -57,7 +57,7 @@
changelog_incremental = true
tag_format = "v$version"
update_changelog_on_bump = true
version = "0.9.0"
version = "0.10.0"
version_files = ["pyproject.toml:version", "src/obsidian_metadata/__version__.py:__version__"]

[tool.coverage.report] # https://coverage.readthedocs.io/en/latest/config.html#report
Expand Down
2 changes: 1 addition & 1 deletion src/obsidian_metadata/__version__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"""obsidian-metadata version."""
__version__ = "0.9.0"
__version__ = "0.10.0"

0 comments on commit 8968127

Please sign in to comment.