Skip to content

Commit 1adccb6

Browse files
authored
[RELEASE]: v0.9.7 (#1635)
1 parent a80ca3b commit 1adccb6

File tree

3 files changed

+18
-2
lines changed

3 files changed

+18
-2
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ share/python-wheels/
2525
*.egg-info/
2626
.installed.cfg
2727
*.egg
28+
.pypirc
2829

2930
# PyInstaller
3031
# Usually these files are written by a python script from a template

CHANGELOG.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,28 @@ 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

77
## [Unreleased]
8-
## [0.9.7]
8+
## [0.9.8]
99
### [Breaking Changes]
1010
### [Added]
1111
### [Changed]
1212
### [Deprecated]
1313
### [Removed]
1414

15+
## [0.9.7] - 2021-03-03
16+
### [Breaking Changes]
17+
18+
* PR #1633, #1628: Update requirements for `numpy` (>=1.16.5,<1.20.0), `pandas` (>=1.0.0,<2.0.0), and `scikit-learn` (>=0.20.2,<0.25.0)
19+
20+
### [Added]
21+
22+
* PR #1628: Add unit test coverage for Python 3.8
23+
* PR #1616: Accept prec_init as array or list in `LabelModel`
24+
* PR #1602: Add get_label_instances to analysis module
25+
26+
### [Contributors]
27+
28+
Thanks to @DavidKoleczek and @antonis19 for contributions!
29+
1530
## [0.9.6] - 2020-08-08
1631
### [Added]
1732

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 = "6+dev"
3+
_REVISION = "7"
44

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

0 commit comments

Comments
 (0)