diff --git a/CHANGELOG.md b/CHANGELOG.md index 0bc34e6..61ce69b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,9 +4,10 @@ Changelog ### 1.8.4 * Rename `kaggle-api` to `kaggle-cli` -* Restore model validation check +* Allow auth to happen multiple times (#922) * Add --acc to set accelerator for: kaggle kernels push ... (#907) * Add automatic retry and resume to download_file (#905) Thanks katoue! +* Restore model validation check (#902) * Add file pattern matching in output download (#901) Thanks piotr-ginal! ### 1.8.3 diff --git a/pyproject.toml b/pyproject.toml index 831b172..50c56f9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -39,7 +39,7 @@ kaggle = "kaggle.cli:main" [project.urls] Homepage = "https://github.com/Kaggle/kaggle-cli" -Issues = "https://github.com/Kaggle/kaggle-api/issues" +Issues = "https://github.com/Kaggle/kaggle-cli/issues" [tool.hatch.version] path = "src/kaggle/__init__.py" diff --git a/src/kaggle/__init__.py b/src/kaggle/__init__.py index 48ff028..3941795 100644 --- a/src/kaggle/__init__.py +++ b/src/kaggle/__init__.py @@ -3,7 +3,7 @@ import os from kaggle.api.kaggle_api_extended import KaggleApi -__version__ = "1.8.3" +__version__ = "1.8.4" enable_oauth = os.environ.get("KAGGLE_ENABLE_OAUTH") in ("1", "true", "yes") api = KaggleApi(enable_oauth=enable_oauth)