From 5030f71716ba1dea41f0c42689982580e7af597e Mon Sep 17 00:00:00 2001 From: Eli Bishop Date: Tue, 20 Aug 2019 11:24:51 -0700 Subject: [PATCH] Releasing version 6.10.1 --- 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 b16f135b..f7108546 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.1] - 2019-08-20 +### Fixed: +- Fixed a bug in 6.10.0 that prevented analytics events from being generated for missing flags. + ## [6.10.0] - 2019-08-20 ### Added: - Added support for upcoming LaunchDarkly experimentation features. See `LDClient.track()`. diff --git a/ldclient/version.py b/ldclient/version.py index 86357182..6aad60d3 100644 --- a/ldclient/version.py +++ b/ldclient/version.py @@ -1 +1 @@ -VERSION = "6.10.0" +VERSION = "6.10.1" diff --git a/setup.py b/setup.py index 52a8cced..bcfd76d3 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.10.0' +ldclient_version='6.10.1' # parse_requirements() returns generator of pip.req.InstallRequirement objects install_reqs = parse_requirements('requirements.txt')