diff --git a/CHANGELOG.md b/CHANGELOG.md index 54bb027..98bfa1c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## version 1.0.14 2021-08-24 + +- improved and fixed bug in the curl download function +- imporved dask datapoint reader to correctly determine dtypes + ## version 1.0.13 2021-08-11 - rewrite the download() function to use libcurl diff --git a/ddf_utils/__init__.py b/ddf_utils/__init__.py index 9d208ed..57ed288 100644 --- a/ddf_utils/__init__.py +++ b/ddf_utils/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -__version__ = '1.0.14dev' +__version__ = '1.0.14' from . import (str, cli, i18n, io, patch, qa, transformer, factory) from ddf_utils.model.package import DataPackage diff --git a/setup.py b/setup.py index 46c29a7..3eb3ccd 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ from setuptools import find_packages, setup -version = "1.0.14dev" +version = "1.0.14" if sys.argv[-1] == 'tag': os.system("git tag -a %s -m 'version %s'" % (version, version))