diff --git a/CHANGELOG.md b/CHANGELOG.md index 5997edf..cc50949 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,21 +19,30 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Developer -## [v0.5.4] +## [v0.5.5] ### Added - Add missing dependency urllib3 to setup.py. ([181](https://github.com/radiantearth/radiant-mlhub/pull/181)) +- Add a unit test to confirm asset save paths are getting formatted correctly with expected file extensions. ([186](https://github.com/radiantearth/radiant-mlhub/pull/186)) ### Changed - Performance improvements to Dataset.download() ([182](https://github.com/radiantearth/radiant-mlhub/pull/182)) - Enable INFO level logging by default in Dataset.download() ([182](https://github.com/radiantearth/radiant-mlhub/pull/182)) +### Fixed + +- Fix regression bug from PR #182. ([186](https://github.com/radiantearth/radiant-mlhub/pull/186)) + ### Developer - Add flake8-logging-format package ([182](https://github.com/radiantearth/radiant-mlhub/pull/182)) +## [v0.5.4] + +Unreleased version. + ## [v0.5.3] ### Added @@ -244,8 +253,8 @@ Includes support for: * Fetching datasets and collections by ID * Downloading collection archives -[Unreleased]: -[v0.5.4]: +[Unreleased]: +[v0.5.5]: [v0.5.3]: [v0.5.2]: [v0.5.1]: diff --git a/binder/requirements.txt b/binder/requirements.txt index 15c153f..487f876 100644 --- a/binder/requirements.txt +++ b/binder/requirements.txt @@ -1 +1 @@ -radiant-mlhub==0.5.4 +radiant-mlhub==0.5.5 diff --git a/pyproject.toml b/pyproject.toml index 28b65bc..9d09d9e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -31,7 +31,7 @@ ignore_missing_imports = true # github_url = "https://github.com///" [tool.tbump.version] -current = "0.5.4" +current = "0.5.5" # Example of a semver regexp. # Make sure this matches current_version before diff --git a/radiant_mlhub/__version__.py b/radiant_mlhub/__version__.py index 19283fe..31d29d8 100644 --- a/radiant_mlhub/__version__.py +++ b/radiant_mlhub/__version__.py @@ -1 +1 @@ -__version__ = '0.5.4' +__version__ = '0.5.5' diff --git a/setup.py b/setup.py index f41e20c..3bf43e5 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setuptools.setup( name="radiant_mlhub", - version="0.5.4", + version="0.5.5", author="Radiant Earth Foundation", author_email="devops@radiant.earth", license='Apache License 2.0', diff --git a/test/test_cli.py b/test/test_cli.py index b13542a..3ed0b03 100644 --- a/test/test_cli.py +++ b/test/test_cli.py @@ -12,7 +12,7 @@ class TestCLI: def test_version(self, cli_runner: "CliRunner_Type") -> None: result = cli_runner.invoke(mlhub, ['--version']) - assert result.output.rstrip('\n') == 'mlhub, version 0.5.4' + assert result.output.rstrip('\n') == 'mlhub, version 0.5.5' def test_configure(self, isolated_cli_runner: "CliRunner_Type") -> None: new_home = Path.cwd() diff --git a/test/test_session.py b/test/test_session.py index f8b03fb..f978ad7 100644 --- a/test/test_session.py +++ b/test/test_session.py @@ -369,7 +369,7 @@ def test_inject_headers(self, requests_mock: "Mocker_Type") -> None: assert len(history) == 1 assert history[0].headers.get('accept') == 'application/json' - assert 'radiant_mlhub/0.5.4' in history[0].headers.get('user-agent') + assert 'radiant_mlhub/0.5.5' in history[0].headers.get('user-agent') def test_relative_path(self, requests_mock: "Mocker_Type", root_url: str) -> None: """The session uses the default root URL and joins relative paths to the root URL."""