diff --git a/CHANGELOG.md b/CHANGELOG.md index dd6cdba..799714b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## 1.6.2 (2022-09-11) + +### Fix + +- use version prefix when downloading dataset + ## 1.6.1 (2022-06-19) ### Fix diff --git a/README.md b/README.md index 00d3c07..4e02068 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ A set of modules for the [Numerai tournament](https://numer.ai/tournament). ## Installation ```sh -pip install nntm==1.6.1 +pip install nntm==1.6.2 ``` ## Usage diff --git a/docs/source/conf.py b/docs/source/conf.py index 2605dd8..ff9fbf4 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -23,7 +23,7 @@ author = "Timo Sutterer" # The full version, including alpha/beta/rc tags -release = "1.6.1" +release = "1.6.2" # -- General configuration --------------------------------------------------- diff --git a/pyproject.toml b/pyproject.toml index 7e47e77..5fcd307 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,7 +12,7 @@ log_cli_level = "DEBUG" [tool.commitizen] name = "cz_conventional_commits" -version = "1.6.1" +version = "1.6.2" version_files = [ "src/nntm/__init__.py", "README.md", diff --git a/src/nntm/__init__.py b/src/nntm/__init__.py index 145d2b4..2c6b479 100644 --- a/src/nntm/__init__.py +++ b/src/nntm/__init__.py @@ -2,7 +2,7 @@ logger = logging.getLogger(__name__) -__version__ = "1.6.1" +__version__ = "1.6.2" __all__ = [ "datasets",