Skip to content

Commit d65fbd3

Browse files
authored
Release 1.6.16 (#612)
This is v1.6.16 of the public API.
1 parent fde9a3f commit d65fbd3

File tree

7 files changed

+12
-5
lines changed

7 files changed

+12
-5
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,3 +62,6 @@ target/
6262

6363
#Ipython Notebook
6464
.ipynb_checkpoints
65+
66+
# Rider/IntelliJ
67+
.idea/

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
Changelog
22
====
3+
### 1.6.16
4+
5+
* No changes; release 1.6.15 isn't usable. We're working on process updates to prevent this from happening again.
6+
37
### 1.6.15
48
* Support XDG base directory specification on Linux
59
* Disable out-of-date API version warning with -W

kaggle/api/kaggle_api_extended.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ def __repr__(self):
272272

273273

274274
class KaggleApi(KaggleApi):
275-
__version__ = '1.6.15'
275+
__version__ = '1.6.16'
276276

277277
CONFIG_NAME_PROXY = 'proxy'
278278
CONFIG_NAME_COMPETITION = 'competition'

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# pyproject.toml instead of maintaining both flows.
77
setup(
88
name='kaggle',
9-
version='1.6.15',
9+
version='1.6.16',
1010
description='Kaggle API',
1111
long_description=
1212
('Official API for https://www.kaggle.com, accessible using a command line '

src/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.6.15"
1+
__version__ = "1.6.16"

src/kaggle/api/kaggle_api_extended.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ def __repr__(self):
256256

257257

258258
class KaggleApi(KaggleApi):
259-
__version__ = '1.6.15'
259+
__version__ = '1.6.16'
260260

261261
CONFIG_NAME_PROXY = 'proxy'
262262
CONFIG_NAME_COMPETITION = 'competition'

src/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# pyproject.toml instead of maintaining both flows.
77
setup(
88
name='kaggle',
9-
version='1.6.14',
9+
version='1.6.16',
1010
description='Kaggle API',
1111
long_description=
1212
('Official API for https://www.kaggle.com, accessible using a command line '

0 commit comments

Comments
 (0)