Skip to content

Commit 833c811

Browse files
author
lewisjared
committed
Bump version: 0.5.2 → 0.5.3
1 parent 22488d8 commit 833c811

File tree

18 files changed

+42
-30
lines changed

18 files changed

+42
-30
lines changed

.bumpversion.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tool.bumpversion]
2-
current_version = "0.5.2"
2+
current_version = "0.5.3"
33
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
44
serialize = ["{major}.{minor}.{patch}"]
55

CITATION.cff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ authors:
2424
- family-names: "Xu"
2525
given-names: "Min"
2626
orcid: "https://orcid.org/0000-0003-3443-0300"
27-
version: 0.5.2
27+
version: 0.5.3
2828
doi: 10.5281/zenodo.15103441
29-
date-released: 2025-05-15
29+
date-released: 2025-05-19
3030
url: "https://github.com/Climate-REF/climate-ref"
3131
license: "Apache-2.0"

changelog/298.docs.md

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

changelog/301.improvement.md

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

changelog/302.improvement.md

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

changelog/303.feature.md

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

changelog/304.improvement.md

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

changelog/306.improvement.md

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

docs/changelog.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,29 @@ from the examples given in that link.
2121

2222
<!-- towncrier release notes start -->
2323

24+
## climate-ref 0.5.3 (2025-05-19)
25+
26+
### Features
27+
28+
- Diagnostic's have been split into two phases, executing which generates any outputs and then building a result
29+
object from the outputs.
30+
This split makes it easier to make modifications to how the results are translated into the CMEC outputs. ([#303](https://github.com/Climate-REF/climate-ref/pulls/303))
31+
32+
### Improvements
33+
34+
- Added automatic backup of SQLite database files before running migrations.
35+
Backups are stored in a `backups` directory adjacent to the database file and are named with timestamps.
36+
The number of backups to retain can be configured via the `db.max_backups` setting in the database configuration,
37+
with a default of 5 backups. ([#301](https://github.com/Climate-REF/climate-ref/pulls/301))
38+
- Update to v0.6.0 of the sample data. ([#302](https://github.com/Climate-REF/climate-ref/pulls/302))
39+
- Add a smoke test for the Celery deployment ([#304](https://github.com/Climate-REF/climate-ref/pulls/304))
40+
- Add tests that the pypi releases are installable ([#306](https://github.com/Climate-REF/climate-ref/pulls/306))
41+
42+
### Improved Documentation
43+
44+
- Added page describing the required reference datasets ([#298](https://github.com/Climate-REF/climate-ref/pulls/298))
45+
46+
2447
## climate-ref 0.5.2 (2025-05-15)
2548

2649
### Bug Fixes

packages/climate-ref-celery/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "climate-ref-celery"
3-
version = "0.5.2"
3+
version = "0.5.3"
44
description = "Celery app for mananging tasks and workers"
55
readme = "README.md"
66
authors = [

packages/climate-ref-core/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "climate-ref-core"
3-
version = "0.5.2"
3+
version = "0.5.3"
44
description = "Core library for the CMIP Rapid Evaluation Framework"
55
readme = "README.md"
66
authors = [

packages/climate-ref-esmvaltool/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "climate-ref-esmvaltool"
3-
version = "0.5.2"
3+
version = "0.5.3"
44
description = "ESMValTool diagnostic provider for the Rapid Evaluation Framework"
55
readme = "README.md"
66
authors = [

packages/climate-ref-example/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "climate-ref-example"
3-
version = "0.5.2"
3+
version = "0.5.3"
44
description = "Example diagnostic provider for the Rapid Evaluation Framework"
55
readme = "README.md"
66
authors = [

packages/climate-ref-ilamb/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "climate-ref-ilamb"
3-
version = "0.5.2"
3+
version = "0.5.3"
44
description = "ILAMB diagnostic provider for the Rapid Evaluation Framework"
55
readme = "README.md"
66
authors = [{ name = "Nathan Collier", email = "nathaniel.collier@gmail.com" }]

packages/climate-ref-pmp/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "climate-ref-pmp"
3-
version = "0.5.2"
3+
version = "0.5.3"
44
description = "PMP diagnostic provider for the Rapid Evaluation Framework"
55
readme = "README.md"
66
authors = [

packages/climate-ref/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "climate-ref"
3-
version = "0.5.2"
3+
version = "0.5.3"
44
description = "Application which runs the CMIP Rapid Evaluation Framework"
55
readme = "README.md"
66
authors = [

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "climate-ref-root"
3-
version = "0.5.2"
3+
version = "0.5.3"
44
description = "CMIP Rapid Evaluation Framework"
55
readme = "README.md"
66
authors = [

uv.lock

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)