Skip to content

Commit 678e1f5

Browse files
[release] Release 0.2.132 (#14588)
1 parent 366e708 commit 678e1f5

File tree

4 files changed

+23
-2
lines changed

4 files changed

+23
-2
lines changed

hail/build.sc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import mill.util.Jvm
1212

1313
object Settings {
1414
val hailMajorMinorVersion = "0.2"
15-
val hailPatchVersion = "131"
15+
val hailPatchVersion = "132"
1616
}
1717

1818
/** Update the millw script. */

hail/python/hail/docs/change_log.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,22 @@ supports.
5252
policy. Their functionality or even existence may change without notice. Please contact us if you
5353
critically depend on experimental functionality.**
5454

55+
## Version 0.2.132
56+
57+
Released 2024-07-08
58+
59+
### New Features
60+
61+
- (hail#14572) Added `StringExpression.find` for finding substrings in a Hail str.
62+
63+
### Bug Fixes
64+
65+
- (hail#14574) Fixed `TypeError` bug when initializing Hail Query with `backend='batch'`.
66+
- (hail#14571) Fixed a deficiency that caused certain pipelines that construct Hail `NDArray`s
67+
from streams to run out of memory.
68+
- (hail#14579) Fix serialization bug that broke some Query-on-Batch pipelines with many complex expressions.
69+
- (hail#14567) Fix Jackson configuration that broke some Query-on-Batch pipelines with many complex expressions.
70+
5571
## Version 0.2.131
5672

5773
Released 2024-05-30

hail/python/hailtop/batch/docs/change_log.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,11 @@ versions. In particular, Hail officially supports:
1515
Change Log
1616
==========
1717

18+
**Version 0.2.132**
19+
20+
- (`#14576 <https://github.com/hail-is/hail/pull/14576>`__) Fixed bug where
21+
submitting many Python jobs would fail with `RecursionError`.
22+
1823
**Version 0.2.131**
1924

2025
- (`#14544 <https://github.com/hail-is/hail/pull/14544>`__) `batch.read_input`

hail/version.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ endif
1616
SCALA_VERSION ?= 2.12.18
1717
SPARK_VERSION ?= 3.5.0
1818
HAIL_MAJOR_MINOR_VERSION := 0.2
19-
HAIL_PATCH_VERSION := 131
19+
HAIL_PATCH_VERSION := 132
2020
HAIL_PIP_VERSION := $(HAIL_MAJOR_MINOR_VERSION).$(HAIL_PATCH_VERSION)
2121
HAIL_VERSION := $(HAIL_PIP_VERSION)-$(SHORT_REVISION)
2222
ELASTIC_MAJOR_VERSION ?= 7

0 commit comments

Comments
 (0)