Skip to content

Commit

Permalink
Change version numbers to 1.5.0
Browse files Browse the repository at this point in the history
Updated GCPy version numbers to 1.5.0 in the following files:

- CHANGELOG.md
- gcpy/_version.py
- gcpy/benchmark/modules/run_1yr_tt_benchmark.py
- gcpy/benchmark/run_benchmark.py
- setup.py

Signed-off-by: Bob Yantosca <[email protected]>
  • Loading branch information
yantosca committed May 29, 2024
1 parent 46db4ea commit d2d95ba
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ All notable changes to GCPy 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
## [1.5.0] - 2024-05-29
### Added
- Script `gcpy/benchmark/modules/benchmark_utils.py`, with common benchmark utility functions
- Script `gcpy/benchmark/modules/benchmark_drydep.py`, with code to create drydep velocity plots
Expand Down
2 changes: 1 addition & 1 deletion gcpy/_version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = '1.4.2'
__version__ = '1.5.0'

2 changes: 1 addition & 1 deletion gcpy/benchmark/modules/run_1yr_tt_benchmark.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
$ export MPLBACKEND=agg
This script corresponds with GCPy 1.4.3. Edit this version ID if releasing
This script corresponds with GCPy 1.5.0. Edit this version ID if releasing
a new version of GCPy.
"""

Expand Down
2 changes: 1 addition & 1 deletion gcpy/benchmark/run_benchmark.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
$ export MPLBACKEND=agg
This script corresponds with GCPy 1.4.3. Edit this version ID if releasing
This script corresponds with GCPy 1.5.0. Edit this version ID if releasing
a new version of GCPy.
"""

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@
]

MAJOR = 1
MINOR = 4
MICRO = 2
MINOR = 5
MICRO = 0
EXTRA = '' # for alpha (aN), beta (bN), rc (rcN) versions

VERSION = f"{MAJOR}.{MINOR}.{MICRO}{EXTRA}"
Expand Down

0 comments on commit d2d95ba

Please sign in to comment.