Skip to content

Commit

Permalink
patch updates 1.6.4,2.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
yashbonde committed Nov 30, 2023
1 parent a566239 commit baf0241
Show file tree
Hide file tree
Showing 7 changed files with 60 additions and 58 deletions.
2 changes: 1 addition & 1 deletion api_docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
project = "ChainFury"
copyright = "2023, NimbleBox Engineering"
author = "NimbleBox Engineering"
release = "1.6.3"
release = "1.6.4"

# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
Expand Down
2 changes: 1 addition & 1 deletion chainfury/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "1.6.3"
__version__ = "1.6.4"
_major, _minor, _patch = __version__.split(".")
_major = int(_major)
_minor = int(_minor)
Expand Down
56 changes: 28 additions & 28 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "chainfury"
version = "1.6.3"
version = "1.6.4"
description = "ChainFury is a powerful tool that simplifies the creation and management of chains of prompts, making it easier to build complex chat applications using LLMs."
authors = ["NimbleBox Engineering <[email protected]>"]
license = "Apache 2.0"
Expand All @@ -16,6 +16,7 @@ pydantic = "^1.10.7"
requests = "^2.31.0"
python-dotenv = "1.0.0"
urllib3 = ">=1.26.18"
"cryptography" = ">=41.0.6"
stability-sdk = { version = "0.8.3", optional = true }
qdrant-client = { version = "1.5.4", optional = true }
boto3 = { version = "1.29.6", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion server/chainfury_server/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "2.0.1"
__version__ = "2.0.2"
_major, _minor, _patch = __version__.split(".")
_major = int(_major)
_minor = int(_minor)
Expand Down
50 changes: 25 additions & 25 deletions server/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion server/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "chainfury_server"
version = "2.0.1"
version = "2.0.2"
description = "ChainFury Server is the open source server for running ChainFury Engine!"
authors = ["NimbleBox Engineering <[email protected]>"]
license = "Apache 2.0"
Expand All @@ -21,6 +21,7 @@ SQLAlchemy = "1.4.47"
uvicorn = "0.20.0"
PyMySQL = "1.0.3"
urllib3 = ">=1.26.18"
"cryptography" = ">=41.0.6"

[tool.poetry.scripts]
chainfury_server = "chainfury_server.server:main"
Expand Down

0 comments on commit baf0241

Please sign in to comment.