Skip to content

Commit e15610c

Browse files
Bump to 2.7.0 (#611)
1 parent aedc079 commit e15610c

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

conda-env/prod.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ dependencies:
88
# =================
99
- python=3.9.10
1010
- pip=22.0.3
11-
- e3sm_diags=2.7.0rc2
11+
- e3sm_diags=2.7.0
1212
prefix: /opt/miniconda3/envs/e3sm_diags_prod

docs/source/dev_guide/releasing-e3sm-diags.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ Bumping the Version
2020

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

2626
3. Bump version using tbump.
2727

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

e3sm_diags/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import os
22
import sys
33

4-
__version__ = "v2.7.0rc2"
4+
__version__ = "v2.7.0"
55
INSTALL_PATH = os.path.join(sys.prefix, "share/e3sm_diags/")
66

77
# Disable MPI in cdms2, which is not currently supported by E3SM-unified

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ def get_all_files_in_dir(directory, pattern):
146146
"Programming Language :: Python :: 3.10",
147147
],
148148
name="e3sm_diags",
149-
version="2.7.0rc2",
149+
version="2.7.0",
150150
author="Chengzhu (Jill) Zhang, Tom Vo, Ryan Forsyth, Chris Golaz and Zeshawn Shaheen",
151151
author_email="[email protected]",
152152
description="E3SM Diagnostics",

tbump.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
github_url = "https://github.com/E3SM-Project/e3sm_diags"
33

44
[version]
5-
current = "2.7.0rc2"
5+
current = "2.7.0"
66

77
# Example of a semver regexp.
88
# Make sure this matches current_version before

0 commit comments

Comments
 (0)