From 70b599f132ce5e0162f09b3d749c286f187e3d55 Mon Sep 17 00:00:00 2001 From: Kyle Wilcox Date: Mon, 5 Mar 2018 12:10:34 -0500 Subject: [PATCH] Release 2.7.0 --- Dockerfile | 2 +- VERSION | 2 +- conda-recipe/meta.yaml | 2 +- docs/conf.py | 4 ++-- gutils/__init__.py | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index 34d14ce..2e012e9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -74,7 +74,7 @@ RUN mkdir -p /etc/my_init.d && \ mkdir -p /gutils COPY docker/init/* /etc/my_init.d/ -ENV GUTILS_VERSION 2.6.0 +ENV GUTILS_VERSION 2.7.0 ENV PROJECT_ROOT /code RUN mkdir -p "$PROJECT_ROOT" diff --git a/VERSION b/VERSION index e70b452..24ba9a3 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.6.0 +2.7.0 diff --git a/conda-recipe/meta.yaml b/conda-recipe/meta.yaml index f2e018d..a6ec106 100644 --- a/conda-recipe/meta.yaml +++ b/conda-recipe/meta.yaml @@ -1,6 +1,6 @@ package: name: gutils - version: "2.6.0" + version: "2.7.0" source: path: ../ diff --git a/docs/conf.py b/docs/conf.py index ce8d7fb..2889f1a 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -73,9 +73,9 @@ # built documents. # # The short X.Y version. -version = "2.6.0" +version = "2.7.0" # The full version, including alpha/beta/rc tags. -release = "2.6.0" +release = "2.7.0" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/gutils/__init__.py b/gutils/__init__.py index 71ad26a..60caeae 100644 --- a/gutils/__init__.py +++ b/gutils/__init__.py @@ -16,7 +16,7 @@ import logging L = logging.getLogger(__name__) -__version__ = "2.6.0" +__version__ = "2.7.0" def boxcar_smooth_dataset(dataset, window_size):