From b57f096b2700fa2394ad630b7ad746d89338a477 Mon Sep 17 00:00:00 2001 From: Taranjeet Singh Date: Wed, 16 Aug 2023 13:23:03 -0700 Subject: [PATCH] Bump version to 0.0.40 (#454) --- embedchain/embedchain.py | 2 +- pyproject.toml | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/embedchain/embedchain.py b/embedchain/embedchain.py index 91fab06b..730429b6 100644 --- a/embedchain/embedchain.py +++ b/embedchain/embedchain.py @@ -76,7 +76,7 @@ class EmbedChain: try: DataType(source) 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( "Embedchain is swapping the arguments for you. This functionality might be deprecated in the future, so please adjust your code." # noqa #E501 diff --git a/pyproject.toml b/pyproject.toml index 30fe6ade..d9cb23c5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "embedchain" -version = "0.0.39" +version = "0.0.40" description = "embedchain is a framework to easily create LLM powered bots over any dataset" authors = ["Taranjeet Singh"] license = "Apache License" diff --git a/setup.py b/setup.py index a6b7a7d7..9da86f18 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ with open("README.md", "r", encoding="utf-8") as fh: setuptools.setup( name="embedchain", - version="0.0.39", + version="0.0.40", author="Taranjeet Singh", author_email="reachtotj@gmail.com", description="embedchain is a framework to easily create LLM powered bots over any dataset", # noqa:E501