diff --git a/Dockerfile b/Dockerfile index 851f758..bcd4c1b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -72,7 +72,7 @@ RUN mkdir -p /etc/my_init.d && \ mkdir -p /gutils COPY docker/init/* /etc/my_init.d/ -ENV GUTILS_VERSION 2.0.0 +ENV GUTILS_VERSION 2.1.0 ENV PROJECT_ROOT /code RUN mkdir -p "$PROJECT_ROOT" diff --git a/VERSION b/VERSION index 227cea2..7ec1d6d 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.0.0 +2.1.0 diff --git a/conda-recipe/meta.yaml b/conda-recipe/meta.yaml index b2b606c..d89bf1a 100644 --- a/conda-recipe/meta.yaml +++ b/conda-recipe/meta.yaml @@ -1,6 +1,6 @@ package: name: gutils - version: "2.0.0" + version: "2.1.0" source: path: ../ diff --git a/docs/conf.py b/docs/conf.py index ffd8233..39b2524 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -73,9 +73,9 @@ # built documents. # # The short X.Y version. -version = "2.0.0" +version = "2.1.0" # The full version, including alpha/beta/rc tags. -release = "2.0.0" +release = "2.1.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 fb5b143..033ac18 100644 --- a/gutils/__init__.py +++ b/gutils/__init__.py @@ -16,7 +16,7 @@ import logging L = logging.getLogger(__name__) -__version__ = "2.0.0" +__version__ = "2.1.0" def boxcar_smooth_dataset(dataset, window_size):