From 999ca6850b97ae0cd6778bb70aa16a488d3555a4 Mon Sep 17 00:00:00 2001 From: LaunchDarklyCI Date: Tue, 20 Aug 2019 16:04:23 +0000 Subject: [PATCH] Releasing version 6.10.0 --- CHANGELOG.md | 4 ++++ ldclient/version.py | 2 +- setup.py | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 25925983..b16f135b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to the LaunchDarkly Python SDK will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org). +## [6.10.0] - 2019-08-20 +### Added: +- Added support for upcoming LaunchDarkly experimentation features. See `LDClient.track()`. + ## [6.9.4] - 2019-08-19 ### Fixed: - Under conditions where analytics events are being generated at an extremely high rate (for instance, if an application is evaluating a flag repeatedly in a tight loop on many threads), a thread could be blocked indefinitely within `variation` while waiting for the internal event processing logic to catch up with the backlog. The logic has been changed to drop events if necessary so threads will not be blocked (similar to how the SDK already drops events if the size of the event buffer is exceeded). If that happens, this warning message will be logged once: "Events are being produced faster than they can be processed; some events will be dropped". Under normal conditions this should never happen; this change is meant to avoid a concurrency bottleneck in applications that are already so busy that thread starvation is likely. diff --git a/ldclient/version.py b/ldclient/version.py index 25123c97..86357182 100644 --- a/ldclient/version.py +++ b/ldclient/version.py @@ -1 +1 @@ -VERSION = "6.9.4" +VERSION = "6.10.0" diff --git a/setup.py b/setup.py index 2aec3cf0..52a8cced 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ def parse_requirements(filename): return [line for line in lineiter if line and not line.startswith("#")] -ldclient_version='6.9.4' +ldclient_version='6.10.0' # parse_requirements() returns generator of pip.req.InstallRequirement objects install_reqs = parse_requirements('requirements.txt')