Skip to content
Merged
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
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

## [v5.2.0](https://github.com/mixpanel/mixpanel-python/tree/v5.2.0) (2026-07-10)

### Features
- add service account authentication support ([#175](https://github.com/mixpanel/mixpanel-python/pull/175))

### Fixes
- restore PyPy 3.9 compatibility by pinning pydantic ([#176](https://github.com/mixpanel/mixpanel-python/pull/176))

[Full Changelog](https://github.com/mixpanel/mixpanel-python/compare/v5.1.0...v5.2.0)

Release notes for the `mixpanel` Python package will be added here starting
with the first release made under the standardized release process.

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

##### _May 13, 2026_ - [v5.1.0](https://github.com/mixpanel/mixpanel-python/releases/tag/v5.1.0)
##### _July 10, 2026_ - [v5.2.0](https://github.com/mixpanel/mixpanel-python/releases/tag/v5.2.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.1.0"
__version__ = "5.2.0"

logger = logging.getLogger(__name__)

Expand Down
Loading