Skip to content

Commit

Permalink
release community 1.0.5 (#277)
Browse files Browse the repository at this point in the history
  • Loading branch information
lkuligin authored Jun 5, 2024
1 parent 5164781 commit 1cba20a
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
10 changes: 10 additions & 0 deletions libs/community/langchain_google_community/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,3 +57,13 @@
"VertexAIRank",
"VertexAICheckGroundingWrapper",
]


from importlib import metadata

try:
__version__ = metadata.version(__package__)
except metadata.PackageNotFoundError:
# Case where package metadata is not available.
__version__ = ""
del metadata # optional, avoids polluting the results of dir(__package__)
2 changes: 1 addition & 1 deletion libs/community/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "langchain-google-community"
version = "1.0.4"
version = "1.0.5"
description = "An integration package connecting miscellaneous Google's products and LangChain"
authors = []
readme = "README.md"
Expand Down

0 comments on commit 1cba20a

Please sign in to comment.