Skip to content

Commit 2835af4

Browse files
committed
fix: Actually fix LangChain callback in posthoganalytics
1 parent 54506e5 commit 2835af4

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## 3.9.1 - 2025-01-22
1+
## 3.9.2 - 2025-01-22
22

33
1. Fix importing of LangChain callback handler under certain circumstances.
44

Makefile

+2-2
Original file line numberDiff line numberDiff 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

posthog/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION = "3.9.1"
1+
VERSION = "3.9.2"
22

33
if __name__ == "__main__":
44
print(VERSION, end="") # noqa: T201

0 commit comments

Comments
 (0)