Skip to content

Commit e74cc92

Browse files
authored
Prepare for 0.3.2 release (#170)
http://b/372933776
1 parent b699ad7 commit e74cc92

File tree

2 files changed

+13
-7
lines changed

2 files changed

+13
-7
lines changed

CHANGELOG.md

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,35 +2,41 @@
22

33
## Next (Unreleased)
44

5-
## v.0.3.1 (October 1st, 2024)
5+
## v0.3.2 (October 15th, 2024)
6+
7+
* Fallback to next auth mechanism if auth environment variables are set but empty ([#168](https://github.com/Kaggle/kagglehub/pull/168))
8+
* `kaggle.whoami()` returns proper value in Kaggle Notebook environment ([#166](https://github.com/Kaggle/kagglehub/pull/166))
9+
* `kaggle.whoami()` returns proper value when using Colab secrets ([#165](https://github.com/Kaggle/kagglehub/pull/165))
10+
11+
## v0.3.1 (October 1st, 2024)
612

713
* Attach competition in Kaggle notebook environment ([#161](https://github.com/Kaggle/kagglehub/pull/161))
814
* Download competition using `kagglehub.competition_download(...)` ([#158](https://github.com/Kaggle/kagglehub/pull/158))
915
* Enable authorization via Colab secrets ([#157](https://github.com/Kaggle/kagglehub/pull/157))
1016

11-
## v.0.3.0 (September 4th, 2024)
17+
## v0.3.0 (September 4th, 2024)
1218

1319
* Integrate Keras metrics ([#152](https://github.com/Kaggle/kagglehub/pull/152))
1420
* Enhance logging messages ([#151](https://github.com/Kaggle/kagglehub/pull/151))
1521
* Upgrade Python version support to 3.9 and above ([#154](https://github.com/Kaggle/kagglehub/pull/154))
1622

17-
## v.0.2.9 (July 31st, 2024)
23+
## v0.2.9 (July 31st, 2024)
1824

1925
* Improve upload by ignoring patterns ([#147](https://github.com/Kaggle/kagglehub/pull/147))
2026
* Upload with empty files ([#145](https://github.com/Kaggle/kagglehub/pull/145))
2127
* Attach dataset in Kaggle notebook environment ([#134](https://github.com/Kaggle/kagglehub/pull/134))
2228
* Upload datasets using `kagglehub.dataset_upload(...)` ([#149](https://github.com/Kaggle/kagglehub/pull/149))
2329
* Download datasets using `kagglehub.dataset_download(...)` ([#131](https://github.com/Kaggle/kagglehub/pull/131))
2430

25-
## v.0.2.8 (July 16th, 2024)
31+
## v0.2.8 (July 16th, 2024)
2632

2733
* Added support for implicit token auth in kaggle notebooks ([#141](https://github.com/Kaggle/kagglehub/pull/141))
2834
* Improve logging for cached models in Kaggle & Colab environments ([#142](https://github.com/Kaggle/kagglehub/pull/142))
2935

30-
## v.0.2.7 (July 1st, 2024)
36+
## v0.2.7 (July 1st, 2024)
3137
* Fix model downloading bug
3238

33-
## v.0.2.6 (June 10th, 2024)
39+
## v0.2.6 (June 10th, 2024)
3440

3541
* Add support for `.zip` archive ([#135](https://github.com/Kaggle/kagglehub/pull/135))
3642
* Reduce spammy logging ([#124](https://github.com/Kaggle/kagglehub/pull/124))

src/kagglehub/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.3.1"
1+
__version__ = "0.3.2"
22

33
import kagglehub.logger # configures the library logger.
44
from kagglehub import colab_cache_resolver, http_resolver, kaggle_cache_resolver, registry

0 commit comments

Comments
 (0)