From 9b642a212abec640a868ccc558fa3dbeb4c6a390 Mon Sep 17 00:00:00 2001 From: Braden Hancock Date: Tue, 27 Feb 2024 14:27:54 -0800 Subject: [PATCH] [RELEASE]: v0.10.0 (#1731) --- CHANGELOG.md | 11 +++++++++++ snorkel/version.py | 4 ++-- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c96e96e06..1f4d1bebb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### [Deprecated] ### [Removed] + +## [0.10.0] - 2023-02-27 +### [Breaking Changes] + +* PR #1729: Add support for Python 3.11 and remove support for all other minor versions + +### [Contributors] + +Thanks to @bhancock8, @kamelCased, @MLobo1997, and @rsmith49 for contributions! + + ## [0.9.9] - 2022-07-28 ### [Added] diff --git a/snorkel/version.py b/snorkel/version.py index 30fca3314..1ca7305c7 100644 --- a/snorkel/version.py +++ b/snorkel/version.py @@ -1,6 +1,6 @@ _MAJOR = "0" -_MINOR = "9" -_REVISION = "10+dev" +_MINOR = "10" +_REVISION = "0" VERSION_SHORT = f"{_MAJOR}.{_MINOR}" VERSION = f"{_MAJOR}.{_MINOR}.{_REVISION}"