We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e19d26 commit 8581b15Copy full SHA for 8581b15
CHANGELOG.md
@@ -1,6 +1,13 @@
1
Changelog
2
====
3
4
+### 2.0.0
5
+
6
+* General Availability release
7
+* Change more "instance" to "variation"
8
+* Update link for the integration test auth instructions (#926)
9
+* Fix string formatting in upgrade nudge message (#928) Thanks PythonicVarun!
10
11
### 1.8.4
12
13
* Rename `kaggle-api` to `kaggle-cli`
src/kaggle/__init__.py
@@ -3,7 +3,7 @@
import os
from kaggle.api.kaggle_api_extended import KaggleApi
-__version__ = "1.8.4"
+__version__ = "2.0.0"
enable_oauth = os.environ.get("KAGGLE_ENABLE_OAUTH") in ("1", "true", "yes")
api = KaggleApi(enable_oauth=enable_oauth)
0 commit comments