Skip to content

Commit

Permalink
Release/v0.5.5 (#188)
Browse files Browse the repository at this point in the history
* Bump to 0.5.5
  • Loading branch information
PowerChell committed Nov 23, 2022
1 parent b40fd7f commit e1a836a
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 9 deletions.
15 changes: 12 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -244,8 +253,8 @@ Includes support for:
* Fetching datasets and collections by ID
* Downloading collection archives

[Unreleased]: <https://github.com/radiantearth/radiant-mlhub/compare/v0.5.4...main>
[v0.5.4]: <https://github.com/radiantearth/radiant-mlhub/compare/v0.5.3...v0.5.4>
[Unreleased]: <https://github.com/radiantearth/radiant-mlhub/compare/v0.5.5...main>
[v0.5.5]: <https://github.com/radiantearth/radiant-mlhub/compare/v0.5.3...v0.5.5>
[v0.5.3]: <https://github.com/radiantearth/radiant-mlhub/compare/v0.5.2...v0.5.3>
[v0.5.2]: <https://github.com/radiantearth/radiant-mlhub/compare/v0.5.1...v0.5.2>
[v0.5.1]: <https://github.com/radiantearth/radiant-mlhub/compare/v0.5.0...v0.5.1>
Expand Down
2 changes: 1 addition & 1 deletion binder/requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
radiant-mlhub==0.5.4
radiant-mlhub==0.5.5
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ ignore_missing_imports = true
# github_url = "https://github.com/<user or organization>/<project>/"

[tool.tbump.version]
current = "0.5.4"
current = "0.5.5"

# Example of a semver regexp.
# Make sure this matches current_version before
Expand Down
2 changes: 1 addition & 1 deletion radiant_mlhub/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.5.4'
__version__ = '0.5.5'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="radiant_mlhub",
version="0.5.4",
version="0.5.5",
author="Radiant Earth Foundation",
author_email="[email protected]",
license='Apache License 2.0',
Expand Down
2 changes: 1 addition & 1 deletion test/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
2 changes: 1 addition & 1 deletion test/test_session.py
Original file line number Diff line number Diff line change
Expand Up @@ -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."""
Expand Down

0 comments on commit e1a836a

Please sign in to comment.