From a8a9c5684c61e5454ff094ca3988ccc0017b74d7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 24 Jul 2026 19:17:41 +0000 Subject: [PATCH] release: prepare analytics 5.3.0 --- CHANGELOG.md | 9 +++++++++ README.md | 2 +- mixpanel/__init__.py | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e519b85..580f5c1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [v5.3.0](https://github.com/mixpanel/mixpanel-python/tree/v5.3.0) (2026-07-24) + +### Fixes +- close _async_client on sync __exit__ and shutdown() (SDK-85) ([#184](https://github.com/mixpanel/mixpanel-python/pull/184)) +- allow capability to offload reportExposure to async thread (SDK-80) ([#181](https://github.com/mixpanel/mixpanel-python/pull/181)) +- distinguish fallback reasons + forward backend error message (SDK-79, SDK-83) ([#180](https://github.com/mixpanel/mixpanel-python/pull/180)) + +[Full Changelog](https://github.com/mixpanel/mixpanel-python/compare/v5.2.0...v5.3.0) + ## [v5.2.0](https://github.com/mixpanel/mixpanel-python/tree/v5.2.0) (2026-07-10) ### Features diff --git a/README.md b/README.md index 090d1ba..c93da6e 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # mixpanel-python -##### _July 10, 2026_ - [v5.2.0](https://github.com/mixpanel/mixpanel-python/releases/tag/v5.2.0) +##### _July 24, 2026_ - [v5.3.0](https://github.com/mixpanel/mixpanel-python/releases/tag/v5.3.0) [![PyPI](https://img.shields.io/pypi/v/mixpanel)](https://pypi.org/project/mixpanel) [![PyPI - Python Version](https://img.shields.io/pypi/pyversions/mixpanel)](https://pypi.org/project/mixpanel) diff --git a/mixpanel/__init__.py b/mixpanel/__init__.py index 5eaf4ef..4cc23f5 100644 --- a/mixpanel/__init__.py +++ b/mixpanel/__init__.py @@ -30,7 +30,7 @@ from .flags.remote_feature_flags import RemoteFeatureFlagsProvider from .flags.types import LocalFlagsConfig, RemoteFlagsConfig -__version__ = "5.2.0" +__version__ = "5.3.0" logger = logging.getLogger(__name__)