From 41605bda8a89d96f441cb8eb90f3d3c8b21f2b71 Mon Sep 17 00:00:00 2001 From: Bob Yantosca Date: Tue, 13 Aug 2024 13:46:30 -0400 Subject: [PATCH] HEMCO 3.9.3 release Updated version numbers in: - CHANGELOG.md - CMakeLists.txt - docs/source/conf.py - src/Core/hco_error_mod.F90 Also updated .release/changeVersionNumbers.sh to echo that the version numbers were updated in the "CHANGELOG.md" file. Signed-off-by: Bob Yantosca --- .release/changeVersionNumbers.sh | 3 ++- CHANGELOG.md | 2 +- CMakeLists.txt | 2 +- docs/source/conf.py | 2 +- src/Core/hco_error_mod.F90 | 2 +- 5 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.release/changeVersionNumbers.sh b/.release/changeVersionNumbers.sh index 82f5410a..a03cbd98 100755 --- a/.release/changeVersionNumbers.sh +++ b/.release/changeVersionNumbers.sh @@ -88,7 +88,8 @@ function main() { pattern='\[.*Unreleased.*\].*' date=$(date -Idate) replace "${pattern}" "\[${version}\] - ${date}" "CHANGELOG.md" - + echo "HEMCO version updated to ${version} in CHANGELOG.md" + # Return to the starting directory cd "${thisDir}" } diff --git a/CHANGELOG.md b/CHANGELOG.md index c15c7778..6513034f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [Unreleased] - TBD +## [3.9.3] - 2024-08-13 ### Fixed - Added brackets around `exempt-issue-labels` list in `.github/workflows/stale.yml` diff --git a/CMakeLists.txt b/CMakeLists.txt index 42e1ed0f..332aeee5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ # HEMCO/CMakeLists.txt cmake_minimum_required(VERSION 3.5) -project(HEMCO VERSION 3.9.2 LANGUAGES Fortran) +project(HEMCO VERSION 3.9.3 LANGUAGES Fortran) # Reminder: Make sure to also update version in src/Core/hco_error_mod.F90 #----------------------------------------------------------------------------- diff --git a/docs/source/conf.py b/docs/source/conf.py index d4d89a82..792fe3e3 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -23,7 +23,7 @@ author = 'GEOS-Chem Support Team' # The full version, including alpha/beta/rc tags -release = '3.9.2' +release = '3.9.3' # -- General configuration --------------------------------------------------- diff --git a/src/Core/hco_error_mod.F90 b/src/Core/hco_error_mod.F90 index a1ed51c5..cc75c328 100644 --- a/src/Core/hco_error_mod.F90 +++ b/src/Core/hco_error_mod.F90 @@ -105,7 +105,7 @@ MODULE HCO_Error_Mod #endif ! HEMCO version number. - CHARACTER(LEN=12), PARAMETER, PUBLIC :: HCO_VERSION = '3.9.2' + CHARACTER(LEN=12), PARAMETER, PUBLIC :: HCO_VERSION = '3.9.3' INTERFACE HCO_Error MODULE PROCEDURE HCO_ErrorNoErr