From 25f0fe4fb136036f67c49d81c9fa59b862d5bc46 Mon Sep 17 00:00:00 2001 From: Kyle Wilcox Date: Mon, 30 Jul 2018 11:54:08 -0400 Subject: [PATCH] Release 3.0.1 --- 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 a48a746..0a49baa 100644 --- a/Dockerfile +++ b/Dockerfile @@ -57,7 +57,7 @@ RUN mkdir -p /etc/my_init.d && \ mkdir -p /gutils COPY docker/init/* /etc/my_init.d/ -ENV GUTILS_VERSION 2.7.0 +ENV GUTILS_VERSION 3.0.1 ENV PROJECT_ROOT /code RUN mkdir -p "$PROJECT_ROOT" diff --git a/VERSION b/VERSION index 24ba9a3..cb2b00e 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.7.0 +3.0.1 diff --git a/conda-recipe/meta.yaml b/conda-recipe/meta.yaml index a6ec106..e97abf0 100644 --- a/conda-recipe/meta.yaml +++ b/conda-recipe/meta.yaml @@ -1,6 +1,6 @@ package: name: gutils - version: "2.7.0" + version: "3.0.1" source: path: ../ diff --git a/docs/conf.py b/docs/conf.py index 2889f1a..25a678c 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -73,9 +73,9 @@ # built documents. # # The short X.Y version. -version = "2.7.0" +version = "3.0.1" # The full version, including alpha/beta/rc tags. -release = "2.7.0" +release = "3.0.1" # 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 dbf9715..2b1d854 100644 --- a/gutils/__init__.py +++ b/gutils/__init__.py @@ -17,7 +17,7 @@ import logging L = logging.getLogger(__name__) -__version__ = "2.7.0" +__version__ = "3.0.1" def boxcar_smooth_dataset(dataset, window_size):