File tree 3 files changed +9
-3
lines changed
3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 1
- ## 3.8.5 - 2025-01-22
1
+ ## 3.9.1 - 2025-01-22
2
2
3
- 1 . Add tracing event to langchain callbacks.
3
+ 1 . Fix importing of LangChain callback handler under certain circumstances.
4
+
5
+ ## 3.9.0 - 2025-01-22
6
+
7
+ 1 . Add ` $ai_trace ` event emission to LangChain callback handler.
4
8
5
9
## 3.8.4 - 2025-01-17
6
10
Original file line number Diff line number Diff line change @@ -17,11 +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
21
find ./posthoganalytics -type f -exec sed -i ' ' -e ' s/from posthog\./from posthoganalytics\./g' {} \;
21
22
rm -rf posthog
22
23
python setup_analytics.py sdist bdist_wheel
23
24
twine upload dist/*
24
25
mkdir posthog
26
+ find ./posthoganalytics -type f -exec sed -i ' ' -e ' s/import posthoganalytics/import posthog/g' {} \;
25
27
find ./posthoganalytics -type f -exec sed -i ' ' -e ' s/from posthoganalytics\./from posthog\./g' {} \;
26
28
cp -r posthoganalytics/* posthog/
27
29
rm -rf posthoganalytics
Original file line number Diff line number Diff line change 1
- VERSION = "3.9.0 "
1
+ VERSION = "3.9.1 "
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