Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion src/kaggle/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
Loading