diff --git a/CHANGELOG.md b/CHANGELOG.md index 1f6040a2..734e6b4b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] +## [0.3.2] - 2022-01-11 + ### Added - `Client.search` accepts an optional `filter_lang` argument for `filter` requests [#128](https://github.com/stac-utils/pystac-client/pull/128) @@ -122,6 +124,7 @@ are in a single HTTP session, handle pagination and respects conformance Initial release. [Unreleased]: +[v0.3.2]: [v0.3.1]: [v0.3.0]: [v0.2.0]: diff --git a/pystac_client/version.py b/pystac_client/version.py index e1424ed0..73e3bb4f 100644 --- a/pystac_client/version.py +++ b/pystac_client/version.py @@ -1 +1 @@ -__version__ = '0.3.1' +__version__ = '0.3.2' diff --git a/tests/test_pystac_api.py b/tests/test_pystac_api.py deleted file mode 100644 index 8d0d9279..00000000 --- a/tests/test_pystac_api.py +++ /dev/null @@ -1,5 +0,0 @@ -from pystac_client import __version__ - - -def test_version(): - assert __version__ == '0.3.1'