From 508fcb3b3b124922b4d07a41811ff27e8704de46 Mon Sep 17 00:00:00 2001 From: Matt Metcalf Date: Thu, 19 Dec 2024 11:07:38 -0500 Subject: [PATCH] 2.0.0 Realse + Changelog Redirect --- CHANGELOG.md | 39 +-------------------------------------- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 39 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8ad7dc1..2d9e6ae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,40 +1,3 @@ # Release History -## 2.0.0 (11/19/2024) - -* GA release of Feature Management supporting Feature Variants. -* GA release of Telemetry support. - * `publish_telemetry` sends: feature name, enabled, telemetry version, reason, variant name, targeting id, and additionally provided metadata. - * `publish_telemetry` can be added as a callback when creating `FeatureManager` with `on_feature_evaluated=publish_telemetry` - & `track_event` a custom event logger that adds the targeting id to the event. - -## 2.0.0b3 (11/14/2024) - -* Fixes a bug where no allocation reason is set if a user is allocated to exactly 100. -* Fixes a bug where VariantAssignmentPercentage wasn't correct for default when enabled. - -## 2.0.0b2 (10/11/2024) - -* Adds VariantAssignmentPercentage, DefaultWhenEnabled, and AllocationId to telemetry. -* Allocation seed value is now None by default, and only defaults to `allocation\n` when assigning variants. - -## 2.0.0b1 (09/10/2024) - -* Adds support for Feature Variants. -* Adds support for Telemetry. - -## 1.0.0 (06/26/2024) - -Updated version to 1.0.0. - -## 1.0.0b1 (05/22/2024) - -New Feature Management library. - -Provides the ability to manage feature flags in a project. Enables: - -* Loading of feature flags from a file, see: https://github.com/Azure/AppConfiguration/blob/main/docs/FeatureManagement/FeatureManagement.v2.0.0.schema.json -* Loading of feature flags from Azure App Configuration. -* Checking if a feature is enabled. -* Default feature filters: TimeWindowFilter, TargetingFilter. -* Custom feature filters. +See [Release Notes](https://github.com/Azure/AppConfiguration/blob/main/releaseNotes/PythonFeatureManagement.md) for the full release history. \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 32b0689..ea1cd89 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,7 +19,7 @@ build-backend = "setuptools.build_meta" [project] name = "FeatureManagement" -version = "2.0.0b3" +version = "2.0.0" authors = [ { name="Microsoft Corporation", email="appconfig@microsoft.com" }, ]