From 81428f6384ae9d27fd1631e98d5bbf405b7863ba Mon Sep 17 00:00:00 2001 From: Matthew Hanson Date: Tue, 11 Jan 2022 09:52:40 -0500 Subject: [PATCH 1/2] bump version and update changelog --- CHANGELOG.md | 3 +++ pystac_client/version.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) 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' From 179acda56b38b4120d5aaaaebaf369b7444a3acf Mon Sep 17 00:00:00 2001 From: Matthew Hanson Date: Tue, 11 Jan 2022 09:55:00 -0500 Subject: [PATCH 2/2] remove silly version test --- tests/test_pystac_api.py | 5 ----- 1 file changed, 5 deletions(-) delete mode 100644 tests/test_pystac_api.py 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'