From 44a3547728c2f906a4bfe5fd0b8c7787e187298f Mon Sep 17 00:00:00 2001 From: Kyle Wilcox Date: Wed, 1 Nov 2017 17:34:30 -0400 Subject: [PATCH] Release 2.4.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 bfb320a..6875344 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.3.0 +ENV GUTILS_VERSION 2.4.0 ENV PROJECT_ROOT /code RUN mkdir -p "$PROJECT_ROOT" diff --git a/VERSION b/VERSION index 276cbf9..197c4d5 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.3.0 +2.4.0 diff --git a/conda-recipe/meta.yaml b/conda-recipe/meta.yaml index 96a025c..499b9e2 100644 --- a/conda-recipe/meta.yaml +++ b/conda-recipe/meta.yaml @@ -1,6 +1,6 @@ package: name: gutils - version: "2.3.0" + version: "2.4.0" source: path: ../ diff --git a/docs/conf.py b/docs/conf.py index d82cad5..867bab4 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -73,9 +73,9 @@ # built documents. # # The short X.Y version. -version = "2.3.0" +version = "2.4.0" # The full version, including alpha/beta/rc tags. -release = "2.3.0" +release = "2.4.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 cf57435..ebb2af5 100644 --- a/gutils/__init__.py +++ b/gutils/__init__.py @@ -16,7 +16,7 @@ import logging L = logging.getLogger(__name__) -__version__ = "2.3.0" +__version__ = "2.4.0" def boxcar_smooth_dataset(dataset, window_size):