File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1- ## 3.9.1 - 2025-01-22
1+ ## 3.9.2 - 2025-01-22
22
331 . Fix importing of LangChain callback handler under certain circumstances.
44
Original file line number Diff line number Diff line change @@ -17,13 +17,13 @@ release_analytics:
1717 rm -rf posthoganalytics
1818 mkdir posthoganalytics
1919 cp -r posthog/* posthoganalytics/
20- find ./posthoganalytics -type f -exec sed -i ' ' -e ' s/import posthog/import posthoganalytics/g' {} \;
20+ find ./posthoganalytics -type f -exec sed -i ' ' -e ' s/from posthog /from posthoganalytics /g' {} \;
2121 find ./posthoganalytics -type f -exec sed -i ' ' -e ' s/from posthog\./from posthoganalytics\./g' {} \;
2222 rm -rf posthog
2323 python setup_analytics.py sdist bdist_wheel
2424 twine upload dist/*
2525 mkdir posthog
26- find ./posthoganalytics -type f -exec sed -i ' ' -e ' s/import posthoganalytics/import posthog/g' {} \;
26+ find ./posthoganalytics -type f -exec sed -i ' ' -e ' s/from posthoganalytics /from posthog /g' {} \;
2727 find ./posthoganalytics -type f -exec sed -i ' ' -e ' s/from posthoganalytics\./from posthog\./g' {} \;
2828 cp -r posthoganalytics/* posthog/
2929 rm -rf posthoganalytics
Original file line number Diff line number Diff line change 1- VERSION = "3.9.1 "
1+ VERSION = "3.9.2 "
22
33if __name__ == "__main__" :
44 print (VERSION , end = "" ) # noqa: T201
You can’t perform that action at this time.
0 commit comments