diff --git a/CHANGELOG.md b/CHANGELOG.md index 63f151d..35b57ab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +## v0.7.2 (2026-04-06) + +### Minor / Bug Fixes + +- add suppot for inline tags (#100) +- add configurability to search stop words (#99) +- add opt-in ASCII slug generation (#97) +- add mermaid support (#96) +- add dev mode to server (#95) +- add custom 404 support to dev server (#94) + ## v0.7.1 (2026-04-05) ### Minor / Bug Fixes diff --git a/pyproject.toml b/pyproject.toml index 9e8e9b3..c43572e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "rockgarden" -version = "0.7.1" +version = "0.7.2" description = "Static site generator for Markdown content with Obsidian support" readme = "README.md" authors = [ @@ -81,7 +81,7 @@ filterwarnings = ["ignore::DeprecationWarning:frontmatter"] [tool.commitizen] name = "cz_conventional_commits" -version = "0.7.1" +version = "0.7.2" version_files = [ "pyproject.toml:^version", "src/rockgarden/__init__.py:^__version__", diff --git a/src/rockgarden/__init__.py b/src/rockgarden/__init__.py index 4d0f334..0d2ebff 100644 --- a/src/rockgarden/__init__.py +++ b/src/rockgarden/__init__.py @@ -1,3 +1,3 @@ """rockgarden - Obsidian-compatible static site generator.""" -__version__ = "0.7.1" +__version__ = "0.7.2" diff --git a/uv.lock b/uv.lock index 2019645..19ba207 100644 --- a/uv.lock +++ b/uv.lock @@ -510,7 +510,7 @@ wheels = [ [[package]] name = "rockgarden" -version = "0.7.1" +version = "0.7.2" source = { editable = "." } dependencies = [ { name = "jinja2" },