Skip to content

Commit

Permalink
Bump to 2.7.0 (#611)
Browse files Browse the repository at this point in the history
  • Loading branch information
tomvothecoder authored Jul 11, 2022
1 parent aedc079 commit e15610c
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion conda-env/prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ dependencies:
# =================
- python=3.9.10
- pip=22.0.3
- e3sm_diags=2.7.0rc2
- e3sm_diags=2.7.0
prefix: /opt/miniconda3/envs/e3sm_diags_prod
6 changes: 3 additions & 3 deletions docs/source/dev_guide/releasing-e3sm-diags.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ Bumping the Version

# Prepend "v" to <version>
# For release candidates, append "rc" to <version>
git checkout -b v<version>
git push --set-upstream origin v<version>
git checkout -b bump/v<version>
git push --set-upstream origin bump/v<version>

3. Bump version using tbump.

Expand All @@ -44,7 +44,7 @@ Bumping the Version
=> Would run these git commands
$ git add --update
$ git commit --message Bump to 2.6.0
$ git push origin v2.6.0
$ git push origin bump/v2.6.0
:: Looking good? (y/N)
>

Expand Down
2 changes: 1 addition & 1 deletion e3sm_diags/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import os
import sys

__version__ = "v2.7.0rc2"
__version__ = "v2.7.0"
INSTALL_PATH = os.path.join(sys.prefix, "share/e3sm_diags/")

# Disable MPI in cdms2, which is not currently supported by E3SM-unified
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ def get_all_files_in_dir(directory, pattern):
"Programming Language :: Python :: 3.10",
],
name="e3sm_diags",
version="2.7.0rc2",
version="2.7.0",
author="Chengzhu (Jill) Zhang, Tom Vo, Ryan Forsyth, Chris Golaz and Zeshawn Shaheen",
author_email="[email protected]",
description="E3SM Diagnostics",
Expand Down
2 changes: 1 addition & 1 deletion tbump.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
github_url = "https://github.com/E3SM-Project/e3sm_diags"

[version]
current = "2.7.0rc2"
current = "2.7.0"

# Example of a semver regexp.
# Make sure this matches current_version before
Expand Down

0 comments on commit e15610c

Please sign in to comment.