File tree 3 files changed +4
-4
lines changed
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
2
2
3
3
1 . Fix importing of LangChain callback handler under certain circumstances.
4
4
Original file line number Diff line number Diff line change @@ -17,13 +17,13 @@ release_analytics:
17
17
rm -rf posthoganalytics
18
18
mkdir posthoganalytics
19
19
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' {} \;
21
21
find ./posthoganalytics -type f -exec sed -i ' ' -e ' s/from posthog\./from posthoganalytics\./g' {} \;
22
22
rm -rf posthog
23
23
python setup_analytics.py sdist bdist_wheel
24
24
twine upload dist/*
25
25
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' {} \;
27
27
find ./posthoganalytics -type f -exec sed -i ' ' -e ' s/from posthoganalytics\./from posthog\./g' {} \;
28
28
cp -r posthoganalytics/* posthog/
29
29
rm -rf posthoganalytics
Original file line number Diff line number Diff line change 1
- VERSION = "3.9.1 "
1
+ VERSION = "3.9.2 "
2
2
3
3
if __name__ == "__main__" :
4
4
print (VERSION , end = "" ) # noqa: T201
You can’t perform that action at this time.
0 commit comments