Skip to content

Commit 1c0a61d

Browse files
authored
fix(setup): Make sure all packages are bundled (#132)
* fix(setup): Make sure all packages are bundled * prep release
1 parent ffa35fa commit 1c0a61d

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 3.6.2 - 2024-09-03
2+
3+
1. Make sure setup.py discovers the new exception integration package.
4+
15
## 3.6.1 - 2024-09-03
26

37
1. Adds django integration to exception autocapture in alpha state. This feature is not yet stable and may change in future versions.

posthog/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION = "3.6.1"
1+
VERSION = "3.6.2"
22

33
if __name__ == "__main__":
44
print(VERSION, end="") # noqa: T201

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
maintainer="PostHog",
3838
maintainer_email="[email protected]",
3939
test_suite="posthog.test.all",
40-
packages=["posthog", "posthog.test", "posthog.sentry"],
40+
packages=["posthog", "posthog.test", "posthog.sentry", "posthog.exception_integrations"],
4141
license="MIT License",
4242
install_requires=install_requires,
4343
extras_require=extras_require,

0 commit comments

Comments
 (0)