diff --git a/CHANGELOG.md b/CHANGELOG.md index a94feab..02017b6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 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. + ## 3.6.0 - 2024-08-28 1. Adds exception autocapture in alpha state. This feature is not yet stable and may change in future versions. diff --git a/posthog/version.py b/posthog/version.py index 39f86e0..366c4c4 100644 --- a/posthog/version.py +++ b/posthog/version.py @@ -1,4 +1,4 @@ -VERSION = "3.6.0" +VERSION = "3.6.1" if __name__ == "__main__": print(VERSION, end="") # noqa: T201