From 678e1f52b9999cb05ebf03fd360e5c4506bd6dad Mon Sep 17 00:00:00 2001 From: Daniel Goldstein Date: Tue, 9 Jul 2024 13:02:20 -0400 Subject: [PATCH] [release] Release 0.2.132 (#14588) --- hail/build.sc | 2 +- hail/python/hail/docs/change_log.md | 16 ++++++++++++++++ hail/python/hailtop/batch/docs/change_log.rst | 5 +++++ hail/version.mk | 2 +- 4 files changed, 23 insertions(+), 2 deletions(-) diff --git a/hail/build.sc b/hail/build.sc index f629183ad03..2b993f2af50 100644 --- a/hail/build.sc +++ b/hail/build.sc @@ -12,7 +12,7 @@ import mill.util.Jvm object Settings { val hailMajorMinorVersion = "0.2" - val hailPatchVersion = "131" + val hailPatchVersion = "132" } /** Update the millw script. */ diff --git a/hail/python/hail/docs/change_log.md b/hail/python/hail/docs/change_log.md index ebb9d8307ba..97076da4983 100644 --- a/hail/python/hail/docs/change_log.md +++ b/hail/python/hail/docs/change_log.md @@ -52,6 +52,22 @@ supports. policy. Their functionality or even existence may change without notice. Please contact us if you critically depend on experimental functionality.** +## Version 0.2.132 + +Released 2024-07-08 + +### New Features + +- (hail#14572) Added `StringExpression.find` for finding substrings in a Hail str. + +### Bug Fixes + +- (hail#14574) Fixed `TypeError` bug when initializing Hail Query with `backend='batch'`. +- (hail#14571) Fixed a deficiency that caused certain pipelines that construct Hail `NDArray`s +from streams to run out of memory. +- (hail#14579) Fix serialization bug that broke some Query-on-Batch pipelines with many complex expressions. +- (hail#14567) Fix Jackson configuration that broke some Query-on-Batch pipelines with many complex expressions. + ## Version 0.2.131 Released 2024-05-30 diff --git a/hail/python/hailtop/batch/docs/change_log.rst b/hail/python/hailtop/batch/docs/change_log.rst index 42649b1f25e..909140e7dfb 100644 --- a/hail/python/hailtop/batch/docs/change_log.rst +++ b/hail/python/hailtop/batch/docs/change_log.rst @@ -15,6 +15,11 @@ versions. In particular, Hail officially supports: Change Log ========== +**Version 0.2.132** + +- (`#14576 `__) Fixed bug where + submitting many Python jobs would fail with `RecursionError`. + **Version 0.2.131** - (`#14544 `__) `batch.read_input` diff --git a/hail/version.mk b/hail/version.mk index 0b09f58008e..cb888c7749f 100644 --- a/hail/version.mk +++ b/hail/version.mk @@ -16,7 +16,7 @@ endif SCALA_VERSION ?= 2.12.18 SPARK_VERSION ?= 3.5.0 HAIL_MAJOR_MINOR_VERSION := 0.2 -HAIL_PATCH_VERSION := 131 +HAIL_PATCH_VERSION := 132 HAIL_PIP_VERSION := $(HAIL_MAJOR_MINOR_VERSION).$(HAIL_PATCH_VERSION) HAIL_VERSION := $(HAIL_PIP_VERSION)-$(SHORT_REVISION) ELASTIC_MAJOR_VERSION ?= 7