Skip to content
This repository was archived by the owner on Mar 15, 2026. It is now read-only.

Commit 0de51fb

Browse files
Merge pull request #186 from NimbleBoxAI/fury
patch updates 1.6.4,2.0.6
2 parents 8fbb973 + baf0241 commit 0de51fb

7 files changed

Lines changed: 60 additions & 58 deletions

File tree

api_docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
project = "ChainFury"
1515
copyright = "2023, NimbleBox Engineering"
1616
author = "NimbleBox Engineering"
17-
release = "1.6.3"
17+
release = "1.6.4"
1818

1919
# -- General configuration ---------------------------------------------------
2020
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration

chainfury/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "1.6.3"
1+
__version__ = "1.6.4"
22
_major, _minor, _patch = __version__.split(".")
33
_major = int(_major)
44
_minor = int(_minor)

poetry.lock

Lines changed: 28 additions & 28 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "chainfury"
3-
version = "1.6.3"
3+
version = "1.6.4"
44
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."
55
authors = ["NimbleBox Engineering <engineering@nimblebox.ai>"]
66
license = "Apache 2.0"
@@ -16,6 +16,7 @@ pydantic = "^1.10.7"
1616
requests = "^2.31.0"
1717
python-dotenv = "1.0.0"
1818
urllib3 = ">=1.26.18"
19+
"cryptography" = ">=41.0.6"
1920
stability-sdk = { version = "0.8.3", optional = true }
2021
qdrant-client = { version = "1.5.4", optional = true }
2122
boto3 = { version = "1.29.6", optional = true }

server/chainfury_server/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "2.0.1"
1+
__version__ = "2.0.2"
22
_major, _minor, _patch = __version__.split(".")
33
_major = int(_major)
44
_minor = int(_minor)

server/poetry.lock

Lines changed: 25 additions & 25 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

server/pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "chainfury_server"
3-
version = "2.0.1"
3+
version = "2.0.2"
44
description = "ChainFury Server is the open source server for running ChainFury Engine!"
55
authors = ["NimbleBox Engineering <engineering@nimblebox.ai>"]
66
license = "Apache 2.0"
@@ -21,6 +21,7 @@ SQLAlchemy = "1.4.47"
2121
uvicorn = "0.20.0"
2222
PyMySQL = "1.0.3"
2323
urllib3 = ">=1.26.18"
24+
"cryptography" = ">=41.0.6"
2425

2526
[tool.poetry.scripts]
2627
chainfury_server = "chainfury_server.server:main"

0 commit comments

Comments
 (0)