From 391b29b8a82267713cd68753b85132045bbde8ec Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 4 Nov 2021 12:23:02 +0000 Subject: [PATCH] =?UTF-8?q?bump:=20version=201.2.2=20=E2=86=92=201.3.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 6 ++++++ README.md | 2 +- pyproject.toml | 2 +- src/nntm/__init__.py | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a49da7d..c2a89d3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## 1.3.0 (2021-11-04) + +### Feat + +- add argument to keep downloaded file + ## 1.2.2 (2021-11-04) ### Fix diff --git a/README.md b/README.md index d27c576..310999d 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ A set of modules for the Numerai tournament. ## Installation ```sh -pip install nntm==1.2.2 +pip install nntm==1.3.0 ``` ## Usage diff --git a/pyproject.toml b/pyproject.toml index bf5bac6..5dee800 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,7 +12,7 @@ log_cli_level = "DEBUG" [tool.commitizen] name = "cz_conventional_commits" -version = "1.2.2" +version = "1.3.0" version_files = [ "src/nntm/__init__.py", "README.md" diff --git a/src/nntm/__init__.py b/src/nntm/__init__.py index 2711cab..8bfefb0 100644 --- a/src/nntm/__init__.py +++ b/src/nntm/__init__.py @@ -2,7 +2,7 @@ logger = logging.getLogger(__name__) -__version__ = "1.2.2" +__version__ = "1.3.0" __all__ = [ "datasets",