From 0c3a74d120939a956b1ca6f8c187c367c232ee40 Mon Sep 17 00:00:00 2001 From: Dan King Date: Mon, 26 Jul 2021 20:07:13 -0400 Subject: [PATCH] release 0.2.74 (#10706) * release 0.2.74 * Update change_log.md * fix --- hail/Makefile | 2 +- hail/python/hail/docs/change_log.md | 12 ++++++++++++ hail/python/hailtop/batch/docs/change_log.rst | 4 ++++ 3 files changed, 17 insertions(+), 1 deletion(-) diff --git a/hail/Makefile b/hail/Makefile index b11b5562f12..2f66dba8e09 100644 --- a/hail/Makefile +++ b/hail/Makefile @@ -14,7 +14,7 @@ BRANCH := $(shell git rev-parse --abbrev-ref HEAD) SCALA_VERSION ?= 2.12.13 SPARK_VERSION ?= 3.1.1 HAIL_MAJOR_MINOR_VERSION := 0.2 -HAIL_PATCH_VERSION := 73 +HAIL_PATCH_VERSION := 74 HAIL_PIP_VERSION := $(HAIL_MAJOR_MINOR_VERSION).$(HAIL_PATCH_VERSION) HAIL_VERSION := $(HAIL_PIP_VERSION)-$(SHORT_REVISION) ELASTIC_MAJOR_VERSION ?= 7 diff --git a/hail/python/hail/docs/change_log.md b/hail/python/hail/docs/change_log.md index 55f40e30ae9..07552dbe6a5 100644 --- a/hail/python/hail/docs/change_log.md +++ b/hail/python/hail/docs/change_log.md @@ -24,6 +24,18 @@ an earlier version of Hail to read files written in a later version. --- +## Version 0.2.74 + +Released 2021-07-26 + +### Bug fixes + +- (hail#10697) Fixed bug in `read_table` when the table has missing keys and `_n_partitions` is specified. +- (hail#10695) Fixed bug in hl.experimental.loop causing incorrect results when loop state contained pointers. + +--- + + ## Version 0.2.73 Released 2021-07-22 diff --git a/hail/python/hailtop/batch/docs/change_log.rst b/hail/python/hailtop/batch/docs/change_log.rst index 8d335c74a58..72e259eeab8 100644 --- a/hail/python/hailtop/batch/docs/change_log.rst +++ b/hail/python/hailtop/batch/docs/change_log.rst @@ -3,6 +3,10 @@ Change Log ========== +**Version 0.2.74** + +- Large job commands are now written to GCS to avoid Linux argument length and number limitations. + **Version 0.2.72** - Made failed Python Jobs have non-zero exit codes.