Skip to content

Commit f3c549b

Browse files
Bump to 2.6.0 (#538)
1 parent 3073b2e commit f3c549b

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
FROM continuumio/miniconda3:4.6.14
66

77
LABEL maintainer="[email protected]"
8-
LABEL version="2.6.0rc1"
8+
LABEL version="2.6.0"
99

1010
# Copy the entire project dir because we'll install from source.
1111
COPY . .

conda/e3sm_diags_env.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@ dependencies:
2121
- netcdf4=1.5.6
2222
# Additional
2323
# ==============
24-
- e3sm_diags=2.6.0rc1
24+
- e3sm_diags=2.6.0
2525
prefix: /opt/miniconda3/envs/e3sm_diags_env

conda/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% set name = "e3sm_diags" %}
2-
{% set version = "2.6.0rc1" %}
2+
{% set version = "2.6.0" %}
33

44
package:
55
name: {{ name|lower }}

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.6.0rc1"
4+
__version__ = "v2.6.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
@@ -117,7 +117,7 @@ def get_all_files_in_dir(directory, pattern):
117117

118118
setup(
119119
name="e3sm_diags",
120-
version="2.6.0rc1",
120+
version="2.6.0",
121121
author="Chengzhu (Jill) Zhang, Tom Vo, Ryan Forsyth, Chris Golaz and Zeshawn Shaheen",
122122
author_email="[email protected]",
123123
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.6.0rc1"
5+
current = "2.6.0"
66

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

0 commit comments

Comments
 (0)