From 0c6a015eb5ce7abf9eabfb0729ffa795af710e5b Mon Sep 17 00:00:00 2001 From: Joshua Koehler Date: Fri, 12 Dec 2025 17:18:10 -0600 Subject: [PATCH 1/2] pin beta, don't use greater than on it --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index d1164b0..6399c1c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,7 +17,7 @@ dependencies = [ "httpx>=0.27.0", "pydantic>=2.0.0", "asgiref>=3.0.0", - "json-logic>=0.7.0a0" + "json-logic==0.7.0a0" ] keywords = ["mixpanel", "analytics"] classifiers = [ From 12a21b6604d55c72c47c29827275ccdc0452aa92 Mon Sep 17 00:00:00 2001 From: Joshua Koehler Date: Mon, 22 Dec 2025 15:07:56 -0600 Subject: [PATCH 2/2] bump version to non-beta --- docs/conf.py | 2 +- mixpanel/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 33bc720..9217d42 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -20,7 +20,7 @@ project = u'mixpanel' copyright = u' 2021, Mixpanel, Inc.' author = u'Mixpanel ' -version = release = '5.1.0b1' +version = release = '5.1.0' exclude_patterns = ['_build'] pygments_style = 'sphinx' diff --git a/mixpanel/__init__.py b/mixpanel/__init__.py index 77164cc..e03abef 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.1.0b1' +__version__ = '5.1.0' logger = logging.getLogger(__name__)