File tree Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 1+ ## 4.6.1 - 2025-06-09
2+
3+ - fix: replace ` import posthog ` in ` posthoganalytics ` package
4+
15## 4.6.0 - 2025-06-09
26
37- feat: add additional user and request context to captured exceptions via the Django integration
Original file line number Diff line number Diff line change @@ -18,13 +18,15 @@ release_analytics:
1818 cp -r posthog/* posthoganalytics/
1919 find ./posthoganalytics -type f -name " *.py" -exec sed -i.bak -e ' s/from posthog /from posthoganalytics /g' {} \;
2020 find ./posthoganalytics -type f -name " *.py" -exec sed -i.bak -e ' s/from posthog\./from posthoganalytics\./g' {} \;
21+ find ./posthoganalytics -type f -name " *.py" -exec sed -i.bak -e ' s/import posthog/import posthoganalytics/g' {} \;
2122 find ./posthoganalytics -name " *.bak" -delete
2223 rm -rf posthog
2324 python setup_analytics.py sdist bdist_wheel
2425 twine upload dist/*
2526 mkdir posthog
2627 find ./posthoganalytics -type f -name " *.py" -exec sed -i.bak -e ' s/from posthoganalytics /from posthog /g' {} \;
2728 find ./posthoganalytics -type f -name " *.py" -exec sed -i.bak -e ' s/from posthoganalytics\./from posthog\./g' {} \;
29+ find ./posthoganalytics -type f -name " *.py" -exec sed -i.bak -e ' s/import posthoganalytics/import posthog/g' {} \;
2830 find ./posthoganalytics -name " *.bak" -delete
2931 cp -r posthoganalytics/* posthog/
3032 rm -rf posthoganalytics
Original file line number Diff line number Diff line change 1- VERSION = "4.6.0 "
1+ VERSION = "4.6.1 "
22
33if __name__ == "__main__" :
44 print (VERSION , end = "" ) # noqa: T201
You can’t perform that action at this time.
0 commit comments