From 8ee7db5c17080efc0f334d722e5e0fdb8f1d7ab3 Mon Sep 17 00:00:00 2001 From: Wendong-Fan <133094783+Wendong-Fan@users.noreply.github.com> Date: Wed, 14 Aug 2024 21:06:18 +0800 Subject: [PATCH] release: v0.1.6.4 (#826) --- .github/ISSUE_TEMPLATE/bug_report.yml | 2 +- README.md | 2 +- camel/__init__.py | 2 +- docs/conf.py | 2 +- docs/get_started/setup.md | 2 +- pyproject.toml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 4a128103ad..3a469e450d 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -27,7 +27,7 @@ body: attributes: label: What version of camel are you using? description: Run command `python3 -c 'print(__import__("camel").__version__)'` in your shell and paste the output here. - placeholder: E.g., 0.1.6.3 + placeholder: E.g., 0.1.6.4 validations: required: true diff --git a/README.md b/README.md index b57c76263d..a7fe1a7a65 100644 --- a/README.md +++ b/README.md @@ -110,7 +110,7 @@ conda create --name camel python=3.9 conda activate camel # Clone github repo -git clone -b v0.1.6.3 https://github.com/camel-ai/camel.git +git clone -b v0.1.6.4 https://github.com/camel-ai/camel.git # Change directory into project directory cd camel diff --git a/camel/__init__.py b/camel/__init__.py index 9bd37e96bc..d07c9c115b 100644 --- a/camel/__init__.py +++ b/camel/__init__.py @@ -12,7 +12,7 @@ # limitations under the License. # =========== Copyright 2023 @ CAMEL-AI.org. All Rights Reserved. =========== -__version__ = '0.1.6.3' +__version__ = '0.1.6.4' __all__ = [ '__version__', diff --git a/docs/conf.py b/docs/conf.py index 0e74166816..a83b27230d 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -27,7 +27,7 @@ project = 'CAMEL' copyright = '2023, CAMEL-AI.org' author = 'CAMEL-AI.org' -release = '0.1.6.3' +release = '0.1.6.4' html_favicon = ( 'https://raw.githubusercontent.com/camel-ai/camel/master/misc/favicon.png' diff --git a/docs/get_started/setup.md b/docs/get_started/setup.md index 5fdfba08bc..80aa097776 100644 --- a/docs/get_started/setup.md +++ b/docs/get_started/setup.md @@ -61,7 +61,7 @@ conda create --name camel python=3.10 conda activate camel # Clone github repo -git clone -b v0.1.6.3 https://github.com/camel-ai/camel.git +git clone -b v0.1.6.4 https://github.com/camel-ai/camel.git # Change directory into project directory cd camel diff --git a/pyproject.toml b/pyproject.toml index d0aa19449d..746ec87628 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "camel-ai" -version = "0.1.6.3" +version = "0.1.6.4" authors = ["CAMEL-AI.org"] description = "Communicative Agents for AI Society Study" readme = "README.md"