Skip to content

Commit a08af17

Browse files
authored
Release 2.0.1 (#962)
Release for 2.0.1 Of note, this also contains a change that bumps `kagglesdk` dep version to `0.1.17`, which had a non-trivial release: https://github.com/Kaggle/kaggle-sdk-python/releases/tag/v0.1.17
1 parent fdc9185 commit a08af17

2 files changed

Lines changed: 9 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,14 @@ Changelog
33

44
### Next
55

6-
* Add `--sandbox` flag to `kaggle competitions submit` for sandbox submissions (competition hosts/admins only)
6+
### 2.0.1
7+
8+
* Add `--sandbox` flag to `kaggle competitions submit` for sandbox submissions (competition hosts/admins only) (#932)
9+
* Optimize large dataset download functionality (#936, s/o katoue)
10+
* Fix 403s and null file handling when listing kernel session output (#951, s/o 4kaws)
11+
* Support updating more types of dataset metadata through `datasets metadata --update`:
12+
* Expected update frequency, user specified sources (#958)
13+
* Dataset images (#959)
714

815
### 2.0.0
916

src/kaggle/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import os
44
from kaggle.api.kaggle_api_extended import KaggleApi
55

6-
__version__ = "2.0.0"
6+
__version__ = "2.0.1"
77

88
enable_oauth = os.environ.get("KAGGLE_ENABLE_OAUTH") in ("1", "true", "yes")
99
api = KaggleApi(enable_oauth=enable_oauth)

0 commit comments

Comments
 (0)