Skip to content

Commit

Permalink
Bump to 2.6.0rc1 (#531)
Browse files Browse the repository at this point in the history
  • Loading branch information
tomvothecoder authored Oct 4, 2021
1 parent 5df3d81 commit f5c8ea6
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
FROM continuumio/miniconda3:4.6.14

LABEL maintainer="[email protected]"
LABEL version="2.5.0"
LABEL version="2.6.0rc1"

# Copy the entire project dir because we'll install from source.
COPY . .
Expand Down
2 changes: 1 addition & 1 deletion conda/e3sm_diags_env.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ dependencies:
- netcdf4=1.5.6
# Additional
# ==============
- e3sm_diags=2.5.0
- e3sm_diags=2.6.0rc1
prefix: /opt/miniconda3/envs/e3sm_diags_env
2 changes: 1 addition & 1 deletion conda/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% set name = "e3sm_diags" %}
{% set version = "2.5.0" %}
{% set version = "2.6.0rc1" %}

package:
name: {{ name|lower }}
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.5.0"
__version__ = "v2.6.0rc1"
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 @@ -110,7 +110,7 @@ def get_all_files_in_dir(directory, pattern):

setup(
name="e3sm_diags",
version="2.5.0",
version="2.6.0rc1",
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.5.0"
current = "2.6.0rc1"

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

0 comments on commit f5c8ea6

Please sign in to comment.