Skip to content

Commit bddefc7

Browse files
authored
Release 0.1.9 (#84)
1 parent 0176a96 commit bddefc7

File tree

4 files changed

+9
-2
lines changed

4 files changed

+9
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
## Next (Unreleased)
44

5+
## v0.1.9 (February 5th, 2023)
6+
7+
* Fix message when detecting newer version ([#82](https://github.com/Kaggle/kagglehub/pull/82))
8+
* Link to model detail page in errors(Colab resolver) ([#83](https://github.com/Kaggle/kagglehub/pull/83))
9+
510
## v0.1.8 (January 31st, 2023)
611

712
* Include URL to model detail page in error message ([#80](https://github.com/Kaggle/kagglehub/pull/80))

pyproject.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,8 @@ ignore = [
130130
"S324",
131131
# Ignore complexity
132132
"C901", "PLR0911", "PLR0912", "PLR0913", "PLR0915",
133+
# Ignore tarfile-unsafe-members
134+
"S202",
133135
]
134136
unfixable = [
135137
# Don't touch unused imports

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.1.8"
1+
__version__ = "0.1.9"
22

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

src/kagglehub/clients.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ def _check_for_version_update(self, response: requests.Response) -> None:
9292
latest_version = parse(latest_version_str)
9393
if latest_version > current_version:
9494
logger.info(
95-
"Warning: Looks like you\'re using an outdated `kagglehub` "
95+
"Warning: Looks like you're using an outdated `kagglehub` "
9696
f"version, please consider updating (latest version: {latest_version})"
9797
)
9898

0 commit comments

Comments
 (0)