Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 1.6.11 #565

Merged
merged 2 commits into from
Apr 5, 2024
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
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
Changelog
====
### 1.6.11

* Allow unauthenticated usage of "datasets download", "datasets files".
* This will only work after April 8th, 2024. More more details, see:
<https://www.kaggle.com/discussions/product-feedback/485439>
* Allow "help" and "version" to be used for all commands, unauthenticated.
* Fix: "dataset download -f" can accept a specific dataset version.

### 1.6.10

Repackage of 1.6.8 as a new release, to fix the problematic 1.6.9 release.

### 1.6.9

* Do not use. Problematic release that causes an error:
`ModuleNotFoundError: No module named 'kaggle.api'`

### 1.6.8

* Add "gguf"
Expand Down
2 changes: 1 addition & 1 deletion kaggle/api/kaggle_api_extended.py
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ def __repr__(self):


class KaggleApi(KaggleApi):
__version__ = '1.6.8'
__version__ = '1.6.11'

CONFIG_NAME_PROXY = 'proxy'
CONFIG_NAME_COMPETITION = 'competition'
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# pyproject.toml instead of maintaining both flows.
setup(
name='kaggle',
version='1.6.8',
version='1.6.11',
description='Kaggle API',
long_description=
('Official API for https://www.kaggle.com, accessible using a command line '
Expand Down
2 changes: 1 addition & 1 deletion src/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.6.8"
__version__ = "1.6.11"
2 changes: 1 addition & 1 deletion src/kaggle/api/kaggle_api_extended.py
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ def __repr__(self):


class KaggleApi(KaggleApi):
__version__ = '1.6.8'
__version__ = '1.6.11'

CONFIG_NAME_PROXY = 'proxy'
CONFIG_NAME_COMPETITION = 'competition'
Expand Down
2 changes: 1 addition & 1 deletion src/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# pyproject.toml instead of maintaining both flows.
setup(
name='kaggle',
version='1.6.8',
version='1.6.11',
description='Kaggle API',
long_description=
('Official API for https://www.kaggle.com, accessible using a command line '
Expand Down