dactyl-db 0.9.0

Interchangeably read and write to a lightweight Rust local store or cloud-hosted Vercel Neon instances behind one facade.
Documentation
# release-plz configuration
# https://release-plz.ieni.dev/docs/config

[workspace]
# Enable changelog generation
changelog_update = true
# Changelog path
changelog_path = "CHANGELOG.md"
# Publish only after a release PR is merged. Ordinary main-branch pushes may
# prepare a release PR, but must not publish packages directly.
release_always = false
# Release commits are generated as `chore(...): release ...`; restricting
# release preparation to version-bearing conventional commits prevents those
# commits from recursively opening another release PR.
release_commits = '^(feat|fix)(\([^)]*\))?!?:'
# Every public workspace package needs its own tag namespace.
git_tag_name = "{{ package }}-v{{ version }}"
# Release PR labels
pr_labels = ["release"]
# Allow release-pr computation even if runtime-generated files make tree dirty
allow_dirty = true

# Dactyl is one application-driver crate.
[[package]]
name = "dactyl-db"
version_group = "dactyl"

# Semantic versioning based on conventional commits:
# - feat: minor version bump
# - fix: patch version bump
# - BREAKING CHANGE: major version bump
# - chore/docs/style/refactor/perf/test: no version bump