Skip to content

Commit 615d103

Browse files
author
lewisjared
committed
Bump version: 0.2.3 → 0.3.0
1 parent 38e562d commit 615d103

7 files changed

Lines changed: 22 additions & 13 deletions

File tree

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
## v0.3.0 (2026-04-13)
2+
3+
### Improvements
4+
5+
- Upgraded `@hey-api/openapi-ts` to v0.95.0 and removed the standalone `@hey-api/client-fetch` dependency, which is now bundled with the code generator. (#24)
6+
7+
### Breaking Changes
8+
9+
- The default `REF_CONFIGURATION` path in the image changed from `/app/.ref` to `/ref`,
10+
to align with the `climate-ref` worker image. Deployments that relied on the default must
11+
remount their config/state volume at `/ref`, or set `REF_CONFIGURATION` explicitly.
12+
13+
Added a `REF_READ_ONLY_DATABASE` setting so the API can run against a read-only `/ref` volume,
14+
using `climate-ref` 0.13.1's `Database.from_config(read_only=True)` and `Database.migration_status` helpers.
15+
Bumped `vite` to `>=7.3.2` for a security fix and refreshed the Python lockfile. (#30)
16+
17+
118
## v0.2.3 (2026-04-10)
219

320
### Bug Fixes

backend/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "ref-backend"
3-
version = "0.2.3"
3+
version = "0.3.0"
44
description = "Backend for the Climate Rapid Evaluation Framework"
55
requires-python = ">=3.11"
66
dependencies = [
@@ -41,7 +41,7 @@ requires = ["hatchling"]
4141
build-backend = "hatchling.build"
4242

4343
[tool.bumpversion]
44-
current_version = "0.2.3"
44+
current_version = "0.3.0"
4545
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
4646
serialize = ["{major}.{minor}.{patch}"]
4747
tag = true

backend/uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

changelog/24.improvement.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog/30.breaking.md

Lines changed: 0 additions & 7 deletions
This file was deleted.

frontend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "frontend",
33
"private": true,
4-
"version": "0.2.3",
4+
"version": "0.3.0",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",

towncrier.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ directory = "changelog"
33
filename = "CHANGELOG.md"
44
title_format = "## v{version} ({project_date})"
55
underlines = ["", "", ""]
6-
version = "0.2.3"
6+
version = "0.3.0"
77

88
[[tool.towncrier.type]]
99
directory = "feature"

0 commit comments

Comments
 (0)