From 96821ee7f29de80f6bbbf645f5cdbda820d7df80 Mon Sep 17 00:00:00 2001 From: Henry Ehrenberg Date: Wed, 23 Oct 2019 04:45:40 +0000 Subject: [PATCH] [RELEASE]: v0.9.2 --- CHANGELOG.md | 24 +++++++++++++++++++++--- snorkel/version.py | 2 +- 2 files changed, 22 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 162fdb240..8e4fcc612 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,14 +5,32 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [Unreleased] -## [0.9.1] +## [0.9.2] - 2019-10-22 + ### [Breaking Changes] + +* PR #1481: removed fault tolerant mode for labeling functions + ### [Added] + +* PR #1481: fault tolerant mode for appliers + ### [Changed] -### [Deprecated] + +* PR #1450, 1467: ignore abstains in scoring, except coverage +* PR #1463: serialize all attributes of label model +* PR #1466: fix label model GPU training option +* PR #1477, #1492: pin dependency versions + ### [Removed] +* PR #1454: `set_seed` utility removed + +### [Contributors] + +Thanks to @HiromuHota, @ferhatelmas, and @garaud for their recent contributions! + + ## [0.9.1] - 2019-09-05 diff --git a/snorkel/version.py b/snorkel/version.py index 263b339c7..122777bf2 100644 --- a/snorkel/version.py +++ b/snorkel/version.py @@ -1,6 +1,6 @@ _MAJOR = "0" _MINOR = "9" -_REVISION = "2+dev" +_REVISION = "2" VERSION_SHORT = f"{_MAJOR}.{_MINOR}" VERSION = f"{_MAJOR}.{_MINOR}.{_REVISION}"