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.8.0 → v0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
natelandau committed Mar 20, 2023
1 parent 6f14076 commit c1a40ed
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 8 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
## v0.9.0 (2023-03-20)

### Feat

- bulk update metadata from a CSV file

### Fix

- find more instances of inline metadata
- ensure frontmatter values are unique within a key
- improve validation of bulk imports
- improve logging to screen

## v0.8.0 (2023-03-12)

### Feat
Expand Down
8 changes: 4 additions & 4 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 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.8.0"
version = "0.9.0"

[tool.poetry.scripts] # https://python-poetry.org/docs/pyproject/#scripts
obsidian-metadata = "obsidian_metadata.cli:app"
Expand Down Expand Up @@ -48,7 +48,7 @@
typeguard = "^3.0.1"
types-python-dateutil = "^2.8.19.10"
vulture = "^2.7"
sh = "^2.0.2"
sh = "2.0.3"

[tool.black]
line-length = 100
Expand All @@ -58,7 +58,7 @@
changelog_incremental = true
tag_format = "v$version"
update_changelog_on_bump = true
version = "0.8.0"
version = "0.9.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.8.0"
__version__ = "0.9.0"

0 comments on commit c1a40ed

Please sign in to comment.