From 00d784ead9a070467c136101a68535ecd97bcbe6 Mon Sep 17 00:00:00 2001 From: Steven Silvester Date: Tue, 17 Oct 2023 12:44:27 -0500 Subject: [PATCH] ARROW-186 Release 1.1 (#174) * ARROW-186 Release 1.1 * add note --- bindings/python/docs/source/changelog.rst | 7 +++++++ bindings/python/pymongoarrow/version.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/bindings/python/docs/source/changelog.rst b/bindings/python/docs/source/changelog.rst index 67478a17..926707b7 100644 --- a/bindings/python/docs/source/changelog.rst +++ b/bindings/python/docs/source/changelog.rst @@ -1,6 +1,13 @@ Changelog ========= +Changes in Version 1.1.0 +------------------------ +- Support for PyArrow 13.0. +- Revert bug fix for nested extension objects in auto schema, since it + caused a performance regression. + + Changes in Version 1.0.2 ------------------------ - Bug fix for projection on nested fields. diff --git a/bindings/python/pymongoarrow/version.py b/bindings/python/pymongoarrow/version.py index c1205a4d..b9f3c87b 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.1.0.dev0" +__version__ = "1.1.0" _MIN_LIBBSON_VERSION = "1.23.1"