Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion mixpanel/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__)

Expand Down
Loading