diff --git a/CHANGELOG.md b/CHANGELOG.md index 563bdfe..d3a2c6e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 3.6.3 - 2024-09-03 + +1. Make sure setup.py for posthoganalytics package also discovers the new exception integration package. + ## 3.6.2 - 2024-09-03 1. Make sure setup.py discovers the new exception integration package. diff --git a/posthog/version.py b/posthog/version.py index 119237c..5de2922 100644 --- a/posthog/version.py +++ b/posthog/version.py @@ -1,4 +1,4 @@ -VERSION = "3.6.2" +VERSION = "3.6.3" if __name__ == "__main__": print(VERSION, end="") # noqa: T201 diff --git a/setup_analytics.py b/setup_analytics.py index 672c084..95f0130 100644 --- a/setup_analytics.py +++ b/setup_analytics.py @@ -27,7 +27,12 @@ maintainer="PostHog", maintainer_email="hey@posthog.com", test_suite="posthoganalytics.test.all", - packages=["posthoganalytics", "posthoganalytics.test", "posthoganalytics.sentry"], + packages=[ + "posthoganalytics", + "posthoganalytics.test", + "posthoganalytics.sentry", + "posthoganalytics.exception_integrations", + ], license="MIT License", install_requires=install_requires, tests_require=tests_require,