diff --git a/hail/Makefile b/hail/Makefile index 6ef15c89bd5..78e21b513a6 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.3 HAIL_MAJOR_MINOR_VERSION := 0.2 -HAIL_PATCH_VERSION := 104 +HAIL_PATCH_VERSION := 105 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 76be5c7a77e..6b7d828e227 100644 --- a/hail/python/hail/docs/change_log.md +++ b/hail/python/hail/docs/change_log.md @@ -24,6 +24,21 @@ an earlier version of Hail to read files written in a later version. --- +## Version 0.2.105 + +Released 2022-10-31 🎃 + +### New Features + +- (hail#12293) Added support for `hail.MatrixTable`s to `hail.ggplot`. + +### Bug Fixes + +- (hail#12384) Fixed a critical bug that disabled tree aggregation and scan executions in 0.2.104, leading to out-of-memory errors. +- (hail#12265) Fix long-standing bug wherein `hl.agg.collect_as_set` and `hl.agg.counter` error when applied to types which, in Python, are unhashable. For example, `hl.agg.counter(t.list_of_genes)` will not error when `t.list_of_genes` is a list. Instead, the counter dictionary will use `FrozenList` keys from the `frozenlist` package. + +--- + ## Version 0.2.104 Release 2022-10-19