Skip to content

Commit 447dba8

Browse files
committed
[RELEASE]: v0.9.1
1 parent 8e4526e commit 447dba8

File tree

2 files changed

+18
-5
lines changed

2 files changed

+18
-5
lines changed

CHANGELOG.md

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,26 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7-
## [Unreleased]
8-
## [0.9.1]
7+
8+
## [0.9.1] - 2019-09-05
9+
910
### [Breaking Changes]
11+
12+
* PR #1453: `SlicingClassifier` renamed to `SliceAwareClassifier`
13+
1014
### [Added]
15+
16+
* PR #1451: add heuristic for breaking symmetry in multiple label model optima case
17+
* PR #1442: integration test for `MultitaskClassifier`
18+
1119
### [Changed]
12-
### [Deprecated]
13-
### [Removed]
20+
21+
* PR #1444: fix label model weight clamping behavior
22+
* PR #1445: fix JSON log writer
23+
* PR #1447: fix correct/incorrect count bug in `LFAnalysis`
24+
* PR #1428, 1449: catch invalid label model inputs
25+
* PR #1441: make inputs to `Scorer.score` optional
26+
1427

1528
## [0.9.0] - 2019-08-15
1629
Version 0.9.0 is a complete redesign of the Snorkel library.

snorkel/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
_MAJOR = "0"
22
_MINOR = "9"
3-
_REVISION = "1+dev"
3+
_REVISION = "1"
44

55
VERSION_SHORT = f"{_MAJOR}.{_MINOR}"
66
VERSION = f"{_MAJOR}.{_MINOR}.{_REVISION}"

0 commit comments

Comments
 (0)