Bump version to 0.0.40 (#454)

This commit is contained in:
Taranjeet Singh
2023-08-16 13:23:03 -07:00
committed by GitHub
parent 4c8876f032
commit b57f096b27
3 changed files with 3 additions and 3 deletions

View File

@@ -76,7 +76,7 @@ class EmbedChain:
try: try:
DataType(source) DataType(source)
logging.warning( logging.warning(
f"""Starting from version v0.0.39, Embedchain can automatically detect the data type. So, in the `add` method, the argument order has changed. You no longer need to specify '{source}' for the `source` argument. So the code snippet will be `.add("{data_type}", "{source}")`""" # noqa #E501 f"""Starting from version v0.0.40, Embedchain can automatically detect the data type. So, in the `add` method, the argument order has changed. You no longer need to specify '{source}' for the `source` argument. So the code snippet will be `.add("{data_type}", "{source}")`""" # noqa #E501
) )
logging.warning( logging.warning(
"Embedchain is swapping the arguments for you. This functionality might be deprecated in the future, so please adjust your code." # noqa #E501 "Embedchain is swapping the arguments for you. This functionality might be deprecated in the future, so please adjust your code." # noqa #E501

View File

@@ -1,6 +1,6 @@
[tool.poetry] [tool.poetry]
name = "embedchain" name = "embedchain"
version = "0.0.39" version = "0.0.40"
description = "embedchain is a framework to easily create LLM powered bots over any dataset" description = "embedchain is a framework to easily create LLM powered bots over any dataset"
authors = ["Taranjeet Singh"] authors = ["Taranjeet Singh"]
license = "Apache License" license = "Apache License"

View File

@@ -5,7 +5,7 @@ with open("README.md", "r", encoding="utf-8") as fh:
setuptools.setup( setuptools.setup(
name="embedchain", name="embedchain",
version="0.0.39", version="0.0.40",
author="Taranjeet Singh", author="Taranjeet Singh",
author_email="reachtotj@gmail.com", author_email="reachtotj@gmail.com",
description="embedchain is a framework to easily create LLM powered bots over any dataset", # noqa:E501 description="embedchain is a framework to easily create LLM powered bots over any dataset", # noqa:E501