Compare commits

...
2 Commits
3 changed files with 9 additions and 3 deletions
+6 -2
View File
@@ -1,6 +1,10 @@
## 3.8.5 - 2025-01-22
## 3.9.2 - 2025-01-22
1. Add tracing event to langchain callbacks.
1. Fix importing of LangChain callback handler under certain circumstances.
## 3.9.0 - 2025-01-22
1. Add `$ai_trace` event emission to LangChain callback handler.
## 3.8.4 - 2025-01-17
+2
View File
@@ -17,11 +17,13 @@ release_analytics:
rm -rf posthoganalytics
mkdir posthoganalytics
cp -r posthog/* posthoganalytics/
find ./posthoganalytics -type f -exec sed -i '' -e 's/from posthog /from posthoganalytics /g' {} \;
find ./posthoganalytics -type f -exec sed -i '' -e 's/from posthog\./from posthoganalytics\./g' {} \;
rm -rf posthog
python setup_analytics.py sdist bdist_wheel
twine upload dist/*
mkdir posthog
find ./posthoganalytics -type f -exec sed -i '' -e 's/from posthoganalytics /from posthog /g' {} \;
find ./posthoganalytics -type f -exec sed -i '' -e 's/from posthoganalytics\./from posthog\./g' {} \;
cp -r posthoganalytics/* posthog/
rm -rf posthoganalytics
+1 -1
View File
@@ -1,4 +1,4 @@
VERSION = "3.9.0"
VERSION = "3.9.2"
if __name__ == "__main__":
print(VERSION, end="") # noqa: T201