Skip to content

Commit

Permalink
fix(setup): Make sure all packages are bundled (#132)
Browse files Browse the repository at this point in the history
* fix(setup): Make sure all packages are bundled

* prep release
  • Loading branch information
neilkakkar authored Sep 3, 2024
1 parent ffa35fa commit 1c0a61d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 3.6.2 - 2024-09-03

1. Make sure setup.py discovers the new exception integration package.

## 3.6.1 - 2024-09-03

1. Adds django integration to exception autocapture in alpha state. This feature is not yet stable and may change in future versions.
Expand Down
2 changes: 1 addition & 1 deletion posthog/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION = "3.6.1"
VERSION = "3.6.2"

if __name__ == "__main__":
print(VERSION, end="") # noqa: T201
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
maintainer="PostHog",
maintainer_email="[email protected]",
test_suite="posthog.test.all",
packages=["posthog", "posthog.test", "posthog.sentry"],
packages=["posthog", "posthog.test", "posthog.sentry", "posthog.exception_integrations"],
license="MIT License",
install_requires=install_requires,
extras_require=extras_require,
Expand Down

0 comments on commit 1c0a61d

Please sign in to comment.