diff --git a/Dockerfile b/Dockerfile index a21a09082..9dfe9e192 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ FROM continuumio/miniconda3:4.6.14 LABEL maintainer="zhang40@llnl.gov" -LABEL version="2.5.0rc4" +LABEL version="2.5.0" # Copy the entire project dir because we'll install from source. COPY . . diff --git a/acme_diags/__init__.py b/acme_diags/__init__.py index de03ae9ed..b885ec35e 100644 --- a/acme_diags/__init__.py +++ b/acme_diags/__init__.py @@ -1,7 +1,7 @@ import os import sys -__version__ = "v2.5.0rc4" +__version__ = "v2.5.0" INSTALL_PATH = os.path.join(sys.prefix, "share/e3sm_diags/") # Disable MPI in cdms2, which is not currently supported by E3SM-unified diff --git a/conda/meta.yaml b/conda/meta.yaml index b9699f17a..cfe044f2b 100644 --- a/conda/meta.yaml +++ b/conda/meta.yaml @@ -1,5 +1,5 @@ {% set name = "e3sm_diags" %} -{% set version = "2.5.0rc4" %} +{% set version = "2.5.0" %} package: name: {{ name|lower }} diff --git a/setup.py b/setup.py index 174321ac9..96fdab3b1 100644 --- a/setup.py +++ b/setup.py @@ -110,7 +110,7 @@ def get_all_files_in_dir(directory, pattern): setup( name="e3sm_diags", - version="2.5.0rc4", + version="2.5.0", author="Chengzhu (Jill) Zhang, Tom Vo, Ryan Forsyth, Chris Golaz and Zeshawn Shaheen", author_email="zhang40@llnl.gov", description="E3SM Diagnostics",