From 9c82588169e7c510defd2d13d1170f1d5fcca09a Mon Sep 17 00:00:00 2001 From: Eldon Marks Date: Tue, 4 Aug 2026 18:18:54 -0400 Subject: [PATCH] Release 0.0.16 Roll the [Unreleased] block into a dated 0.0.16 heading and bump jvspatial/version.py, which is what the publish workflow reads. Patch rather than minor: the release contains ### Added entries, which RELEASING.md section 3 would normally route to a minor bump, but all of them are additive and backwards compatible -- new optional ServerConfig fields, a previously-unreachable db_type branch, an exported helper, and a new exception hierarchy whose base still derives from RuntimeError. Nothing existing changes shape, so adopters can take this without reading the notes. --- CHANGELOG.md | 2 ++ jvspatial/version.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0e91351..772bd9f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.16] - 2026-08-04 + ### Added - **Postgres is selectable from `Server`** (`jvspatial/api/components/database_configurator.py`). diff --git a/jvspatial/version.py b/jvspatial/version.py index c0150f6..c8a8501 100644 --- a/jvspatial/version.py +++ b/jvspatial/version.py @@ -9,4 +9,4 @@ # - MAJOR: Breaking changes # - MINOR: New features, backward compatible # - PATCH: Bug fixes, backward compatible -__version__ = "0.0.15" +__version__ = "0.0.16"