From eb5ac9db978721e94d9c7823c8fe4d5766d915e2 Mon Sep 17 00:00:00 2001 From: Steven Silvester Date: Wed, 26 Mar 2025 07:56:04 -0500 Subject: [PATCH] Prepare for 1.7.1 release --- bindings/python/CHANGELOG.md | 6 +++++- bindings/python/pymongoarrow/version.py | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/bindings/python/CHANGELOG.md b/bindings/python/CHANGELOG.md index daded6b8..3f76b720 100644 --- a/bindings/python/CHANGELOG.md +++ b/bindings/python/CHANGELOG.md @@ -3,7 +3,11 @@ --- -# Changes in Version 1.7.0 (2025/02/276) +# Changes in Version 1.7.1 (2025/03/26) + +- Fix projection handling when reading list-of-struct data structures. + +# Changes in Version 1.7.0 (2025/02/27) - Add support for PyArrow 19.0. - Add support for `pyarrow.decimal128` types. diff --git a/bindings/python/pymongoarrow/version.py b/bindings/python/pymongoarrow/version.py index b7ff7491..81b328e4 100644 --- a/bindings/python/pymongoarrow/version.py +++ b/bindings/python/pymongoarrow/version.py @@ -12,6 +12,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = "1.8.0.dev0" +__version__ = "1.7.1" _MIN_LIBBSON_VERSION = "1.23.1"