Skip to content

Commit

Permalink
Release/v0.5.1 (#119)
Browse files Browse the repository at this point in the history
* Bump to 0.5.1

* Changelog.
  • Loading branch information
guidorice committed Jun 1, 2022
1 parent 90fcbf7 commit a575735
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 10 deletions.
12 changes: 9 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed

- Improve http requests retry strategy. ([115](https://github.com/radiantearth/radiant-mlhub/pull/115))

### Fixed

### Deprecated

### Developer

## [v0.5.1]

### Changed

- Improve http requests retry strategy. ([115](https://github.com/radiantearth/radiant-mlhub/pull/115))
- Optimizing performance of Dataset.download() ([115](https://github.com/radiantearth/radiant-mlhub/pull/115))

## [v0.5.0]

### Added
Expand Down Expand Up @@ -201,7 +206,8 @@ Includes support for:
* Fetching datasets and collections by ID
* Downloading collection archives

[Unreleased]: <https://github.com/stac-utils/pystac/compare/v0.5.0...main>
[Unreleased]: <https://github.com/stac-utils/pystac/compare/v0.5.1...main>
[v0.5.1]: <https://github.com/stac-utils/pystac/compare/v0.5.0...0.5.1>
[v0.5.0]: <https://github.com/stac-utils/pystac/compare/v0.4.1...0.5.0>
[v0.4.1]: <https://github.com/stac-utils/pystac/compare/v0.4.0...0.4.1>
[v0.4.0]: <https://github.com/stac-utils/pystac/compare/v0.3.1...0.4.0>
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.0
radiant-mlhub==0.5.1
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.0"
current = "0.5.1"

# 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.0'
__version__ = '0.5.1'
2 changes: 1 addition & 1 deletion recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% set name = "radiant-mlhub" %}
{% set version = "0.5.0" %}
{% set version = "0.5.1" %}


package:
Expand Down
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.0",
version="0.5.1",
author="Radiant Earth Foundation",
author_email="devops@radiant.earth",
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.0'
assert result.output.rstrip('\n') == 'mlhub, version 0.5.1'

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.0' in history[0].headers.get('user-agent')
assert 'radiant_mlhub/0.5.1' 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 a575735

Please sign in to comment.