Skip to content

Commit

Permalink
HEMCO 3.9.3 release
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
yantosca committed Aug 13, 2024
1 parent 5e72223 commit 41605bd
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .release/changeVersionNumbers.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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}"
}
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`

Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -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

#-----------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 ---------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion src/Core/hco_error_mod.F90
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 41605bd

Please sign in to comment.