Skip to content

Commit 78d1acd

Browse files
committed
Merge branch 'develop' into release/MAPL-v3
2 parents de85a10 + 7e64aa4 commit 78d1acd

File tree

9 files changed

+657
-1725
lines changed

9 files changed

+657
-1725
lines changed

.circleci/config.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
version: 2.1
22

33
# Anchors in case we need to override the defaults from the orb
4-
#baselibs_version: &baselibs_version v7.17.0
5-
#bcs_version: &bcs_version v11.4.0
4+
#baselibs_version: &baselibs_version v7.33.0
5+
#bcs_version: &bcs_version v11.6.0
66

77
orbs:
8-
ci: geos-esm/circleci-tools@2
8+
ci: geos-esm/circleci-tools@4
99

1010
workflows:
1111
build-test:

.github/workflows/workflow.yml

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
if: "!contains(github.event.pull_request.labels.*.name, '0 diff trivial')"
2323
runs-on: ubuntu-24.04
2424
container:
25-
image: gmao/ubuntu24-geos-env:v7.32.0-intelmpi_2021.13-ifort_2021.13
25+
image: gmao/ubuntu24-geos-env:v7.33.0-intelmpi_2021.13-ifort_2021.13
2626

2727
env:
2828
OMPI_ALLOW_RUN_AS_ROOT: 1
@@ -56,9 +56,11 @@ jobs:
5656
mepo clone --partial blobless
5757
mepo status
5858
59+
- name: Debug PR branch
60+
run: echo "PR is coming from ${{ github.event.pull_request.head.ref }}"
61+
5962
- name: Update other branches
60-
if:
61-
"!contains('refs/heads/main,refs/heads/develop', github.ref)"
63+
if: ${{ github.event.pull_request.head.ref != 'main' && github.event.pull_request.head.ref != 'develop' }}
6264
run: |
6365
mepo checkout-if-exists ${GITHUB_HEAD_REF}
6466
mepo status
@@ -78,7 +80,7 @@ jobs:
7880
if: "!contains(github.event.pull_request.labels.*.name, '0 diff trivial')"
7981
runs-on: ubuntu-24.04
8082
container:
81-
image: gmao/ubuntu24-geos-env-mkl:v7.32.0-openmpi_5.0.5-gcc_14.2.0
83+
image: gmao/ubuntu24-geos-env-mkl:v7.33.0-openmpi_5.0.5-gcc_14.2.0
8284

8385
env:
8486
OMPI_ALLOW_RUN_AS_ROOT: 1
@@ -112,9 +114,11 @@ jobs:
112114
mepo clone --partial blobless
113115
mepo status
114116
117+
- name: Debug PR branch
118+
run: echo "PR is coming from ${{ github.event.pull_request.head.ref }}"
119+
115120
- name: Update other branches
116-
if:
117-
"!contains('refs/heads/main,refs/heads/develop', github.ref)"
121+
if: ${{ github.event.pull_request.head.ref != 'main' && github.event.pull_request.head.ref != 'develop' }}
118122
run: |
119123
mepo checkout-if-exists ${GITHUB_HEAD_REF}
120124
mepo status

CHANGELOG.md

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111

1212
### Added
1313

14-
- Added functionality for model-based QC of MODIS SCF observations using soil layer 1 temperature.
15-
- Added functionality to simulate landice tiles.
16-
- Added functionality to read nc4-formatted tile file.
17-
1814
### Changed
1915

2016
### Fixed
@@ -25,6 +21,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2521

2622
-----------------------------
2723

24+
## [v3.0.0] - 2025-05-28
25+
26+
- 0-diff vs. v2.0.0.
27+
28+
### Added
29+
30+
- Added functionality to simulate landice tiles ([PR #18](https://github.com/GEOS-ESM/GEOSldas_GridComp/pull/18)).
31+
- Added functionality to read nc4-formatted tile file ([PR #18](https://github.com/GEOS-ESM/GEOSldas_GridComp/pull/18)).
32+
- Added model-based QC of (MODIS) snow cover area fraction observations using layer-1 soil temperature ([PR #96](https://github.com/GEOS-ESM/GEOSldas_GridComp/pull/96)).
33+
- Added default settings and command line args for coupled land-atm DAS ([PR #94](https://github.com/GEOS-ESM/GEOSldas_GridComp/pull/94)).
34+
35+
------------------------------
36+
2837
## [v2.0.0] - 2025-04-15
2938

3039
- 0-diff vs. v1.1.0.

0 commit comments

Comments
 (0)