diff --git a/CHANGELOG.md b/CHANGELOG.md index 4a2d01d..4353c2d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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: + +* 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" diff --git a/kaggle/api/kaggle_api_extended.py b/kaggle/api/kaggle_api_extended.py index 1e39a11..e68b682 100644 --- a/kaggle/api/kaggle_api_extended.py +++ b/kaggle/api/kaggle_api_extended.py @@ -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' diff --git a/setup.py b/setup.py index b86b5f2..58c3a40 100644 --- a/setup.py +++ b/setup.py @@ -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 ' diff --git a/src/__init__.py b/src/__init__.py index fd71cb4..5a355df 100644 --- a/src/__init__.py +++ b/src/__init__.py @@ -1 +1 @@ -__version__ = "1.6.8" +__version__ = "1.6.11" diff --git a/src/kaggle/api/kaggle_api_extended.py b/src/kaggle/api/kaggle_api_extended.py index cf0ac61..f989f10 100644 --- a/src/kaggle/api/kaggle_api_extended.py +++ b/src/kaggle/api/kaggle_api_extended.py @@ -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' diff --git a/src/setup.py b/src/setup.py index b86b5f2..58c3a40 100644 --- a/src/setup.py +++ b/src/setup.py @@ -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 '