Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.20)

project(crtm VERSION 3.1.2 LANGUAGES Fortran)
project(crtm VERSION 3.1.3 LANGUAGES Fortran)

option(OPENMP "Build crtm with OpenMP support" ON)
option(FIX_FILE_PATH "Path to fix files (default: fix/)" OFF)
Expand Down
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
CRTM REL-3.1.2
CRTM REL-3.1.3
====================

[![Build Status](https://app.travis-ci.com/JCSDA/CRTMv3.svg?branch=develop)](https://app.travis-ci.com/JCSDA/CRTMv3)

Preamble
--------

CRTM v3.1.2 release (`REL-3.1.2`)
CRTM v3.1.3 release (`REL-3.1.3`)

v3.1.3 released February 10, 2025
v3.1.2 released July 11, 2025
v3.1.1 released August 12, 2024
v3.1.0 (alpha) Released October 31, 2023
Expand Down Expand Up @@ -57,7 +58,7 @@ Contents

Configuration, building, and testing the library
================================================
JCSDA CRTM v3.1.2 Build Instructions
JCSDA CRTM v3.1.3 Build Instructions

The CRTM repository directory structure looks (something) like:

Expand Down Expand Up @@ -119,7 +120,7 @@ By default, the `fix/` directory is provided through ftp using the Get_CRTM_Bina
If this directory doesn't exist during the `cmake` step, then cmake will download and install into `build/test_data/fix_REL-3.1.2.x/fix/`.
The path to an existing fix file installation can be specified using the `FIX_FILE_PATH` option (see CMake variables summary below).

The fix/ directory (as of v3.1.2) contains most of the netCDF SpcCoeff and TauCoeff files, as part of our ongoing effort to transition toward netCDF-only CRTM. We expect to deprecate the binary formats in v3.2.x, but code to read / convert binary format will continue.
The fix/ directory (as of v3.1.x) contains most of the netCDF SpcCoeff and TauCoeff files, as part of our ongoing effort to transition toward netCDF-only CRTM. We expect to deprecate the binary formats in v3.2.x, but code to read / convert binary format will continue.

As of CRTM v3.0.0, we no longer support legacy build system using autotools. (i.e., configure/make). Only cmake / ecbuild (a cmake wrapper, but not required) is supported. Many standalone Makefiles, make.dependencies, etc. have been removed, but not entirely. Cleanup occurs as we work our way through the repository updating other things.

Expand Down
2 changes: 1 addition & 1 deletion VERSION.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
# This software is licensed under the terms of the Apache Licence Version 2.0
# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.

set( ${PROJECT_NAME}_VERSION_STR "3.1.2" )
set( ${PROJECT_NAME}_VERSION_STR "3.1.3" )

2 changes: 1 addition & 1 deletion test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.

cmake_minimum_required (VERSION 3.12)
project("CRTM_Tests" VERSION 3.1.2 LANGUAGES Fortran C)
project("CRTM_Tests" VERSION 3.1.3 LANGUAGES Fortran C)

enable_testing ()

Expand Down