diff --git a/CHANGELOG.md b/CHANGELOG.md index bfcabd7c7..bf2605007 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,13 +4,10 @@ All notable changes to this project will be documented in this file. 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.5] +## [0.9.5] - 2020-04-06 ### [Breaking Changes] -### [Added] -### [Changed] -### [Deprecated] -### [Removed] + +* PR #1565: Upgrade pytorch requirement to support torch>=1.2.0 ## [0.9.4] - 2020-04-05 ### [Breaking Changes] diff --git a/snorkel/version.py b/snorkel/version.py index 2a3606138..000bde4f4 100644 --- a/snorkel/version.py +++ b/snorkel/version.py @@ -1,6 +1,6 @@ _MAJOR = "0" _MINOR = "9" -_REVISION = "5+dev" +_REVISION = "5" VERSION_SHORT = f"{_MAJOR}.{_MINOR}" VERSION = f"{_MAJOR}.{_MINOR}.{_REVISION}"