Skip to content

Commit 9d77784

Browse files
authored
Merge pull request #6 from Climate-REF/chore/bump-to-0.12.3
2 parents 7390edb + d14c8e8 commit 9d77784

6 files changed

Lines changed: 54 additions & 48 deletions

File tree

helm/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ type: application
66
# This is the chart version. This version number should be incremented each time you make changes
77
# to the chart and its templates, including the app version.
88
# Versions are expected to follow Semantic Versioning (https://semver.org/)
9-
version: 0.11.1
9+
version: 0.12.3
1010

1111
# This is the version number of the application being deployed.
1212
# This should match the chart version for coupled versioning.
13-
appVersion: "0.11.1"
13+
appVersion: "0.12.3"
1414

1515
dependencies:
1616
- name: dragonfly

helm/values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ api:
99
image:
1010
repository: ghcr.io/climate-ref/climate-ref-frontend
1111
pullPolicy: IfNotPresent
12-
tag: main
12+
tag: v0.2.0
1313

1414
env:
1515
ENVIRONMENT: production
@@ -164,7 +164,7 @@ defaults:
164164
image:
165165
repository: ghcr.io/climate-ref/climate-ref
166166
pullPolicy: IfNotPresent
167-
tag: v0.11.1
167+
tag: v0.12.3
168168

169169
annotations: {}
170170

pyproject.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ classifiers = [
2020
# We use exact versions here to ensure that the AFT tests run against the same combination of components that will be deployed in production.
2121
# Also update versions.toml when updating these versions to keep the changelog in sync
2222
dependencies = [
23-
"climate-ref==0.11.1",
24-
"climate-ref-core==0.11.1",
25-
"climate-ref-celery==0.11.1",
23+
"climate-ref==0.12.3",
24+
"climate-ref-core==0.12.3",
25+
"climate-ref-celery==0.12.3",
2626
# Diagnostic providers
27-
"climate-ref-esmvaltool==0.11.1",
28-
"climate-ref-pmp==0.11.1",
29-
"climate-ref-ilamb==0.11.1",
27+
"climate-ref-esmvaltool==0.12.3",
28+
"climate-ref-pmp==0.12.3",
29+
"climate-ref-ilamb==0.12.3",
3030
]
3131

3232
[project.optional-dependencies]

scripts/smoke-test.sh

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,11 @@ else
7474
exit 1
7575
fi
7676

77-
# Run a simple solve
78-
if docker compose -f "$COMPOSE_FILE" run --rm climate-ref -v solve --timeout 180 --one-per-provider; then
77+
# Run a simple solve with a fixed set of fast diagnostics to keep times predictable
78+
if docker compose -f "$COMPOSE_FILE" run --rm climate-ref -v solve --timeout 180 --one-per-provider \
79+
--diagnostic global-mean-timeseries \
80+
--diagnostic annual-cycle \
81+
--diagnostic gpp-wecann; then
7982
echo -e "${GREEN} Solving completed before timeout${NC}"
8083
else
8184
echo -e "${RED} Solving failed${NC}"

uv.lock

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

versions.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ version = "2026.02.0"
1212

1313
[components]
1414
# Core framework (from Climate-REF/climate-ref monorepo)
15-
climate-ref-core = "0.11.1"
16-
climate-ref = "0.11.1"
17-
climate-ref-celery = "0.11.1"
15+
climate-ref-core = "0.12.3"
16+
climate-ref = "0.12.3"
17+
climate-ref-celery = "0.12.3"
1818

1919
# Diagnostic providers (standalone repos)
20-
climate-ref-esmvaltool = "0.11.1"
21-
climate-ref-pmp = "0.11.1"
22-
climate-ref-ilamb = "0.11.1"
20+
climate-ref-esmvaltool = "0.12.3"
21+
climate-ref-pmp = "0.12.3"
22+
climate-ref-ilamb = "0.12.3"
2323

2424
[helm]
25-
chart-version = "0.11.1"
26-
app-version = "0.11.1"
25+
chart-version = "0.12.3"
26+
app-version = "0.12.3"

0 commit comments

Comments
 (0)