Skip to content

Commit

Permalink
[release] v0.2.131 (#14569)
Browse files Browse the repository at this point in the history
  • Loading branch information
iris-garden authored Jun 3, 2024
1 parent d9d85d5 commit 11d9b2f
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 2 deletions.
2 changes: 1 addition & 1 deletion hail/build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import mill.util.Jvm

object Settings {
val hailMajorMinorVersion = "0.2"
val hailPatchVersion = "130"
val hailPatchVersion = "131"
}

/** Update the millw script. */
Expand Down
25 changes: 25 additions & 0 deletions hail/python/hail/docs/change_log.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,31 @@ supports.
policy. Their functionality or even existence may change without notice. Please contact us if you
critically depend on experimental functionality.**

## Version 0.2.131

Released 2024-05-30

### New Features

- (hail#14560) The gvcf import stage of the VDS combiner now preserves the GT
of reference blocks. Some datasets have haploid calls on sex chromosomes,
and the fact that the reference was haploid should be preserved.

### Bug Fixes

- (hail#14563) The version of `notebook` installed in Hail Dataproc clusters has
been upgraded from 6.5.4 to 6.5.6 in order to fix a bug where Jupyter
Notebooks wouldn't start on clusters. The workaround involving creating
a cluster with `--packages='ipython<8.22'` is no longer necessary.

### Deprecations

- (hail#14158) Hail now supports and primarily tests against Dataproc 2.2.5,
Spark 3.5.0, and Java 11. We strongly recommend updating to Spark 3.5.0 and
Java 11. You should also update your GCS connector *after installing Hail*:
`curl https://broad.io/install-gcs-connector | python3`. Do not try to update
before installing Hail 0.2.131.

## Version 0.2.130

Released 2024-10-02
Expand Down
7 changes: 7 additions & 0 deletions hail/python/hailtop/batch/docs/change_log.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,13 @@ versions. In particular, Hail officially supports:
Change Log
==========

**Version 0.2.131**

- (`#14544 <https://github.com/hail-is/hail/pull/14544>`__) `batch.read_input`
and `batch.read_input_group` now accept `os.PathLike` objects as well as strings.
- (`#14328 <https://github.com/hail-is/hail/pull/14328>`__) Job resource usage
data can now be retrieved from the Batch API.

**Version 0.2.130**

- (`#14425 <https://github.com/hail-is/hail/pull/14425>`__) A job's 'always run'
Expand Down
2 changes: 1 addition & 1 deletion hail/version.mk
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ endif
SCALA_VERSION ?= 2.12.18
SPARK_VERSION ?= 3.5.0
HAIL_MAJOR_MINOR_VERSION := 0.2
HAIL_PATCH_VERSION := 130
HAIL_PATCH_VERSION := 131
HAIL_PIP_VERSION := $(HAIL_MAJOR_MINOR_VERSION).$(HAIL_PATCH_VERSION)
HAIL_VERSION := $(HAIL_PIP_VERSION)-$(SHORT_REVISION)
ELASTIC_MAJOR_VERSION ?= 7

0 comments on commit 11d9b2f

Please sign in to comment.