diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 51ebc077dd..7b27f7aa8b 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -26,7 +26,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.2.20a1 + placeholder: E.g., 0.2.20 validations: required: true diff --git a/camel/__init__.py b/camel/__init__.py index 492e957cd6..7ff37ea474 100644 --- a/camel/__init__.py +++ b/camel/__init__.py @@ -14,7 +14,7 @@ from camel.logger import disable_logging, enable_logging, set_log_level -__version__ = '0.2.20a1' +__version__ = '0.2.20' __all__ = [ '__version__', diff --git a/docs/conf.py b/docs/conf.py index f1715d01dc..5546765ad0 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -27,7 +27,7 @@ project = 'CAMEL' copyright = '2024, CAMEL-AI.org' author = 'CAMEL-AI.org' -release = '0.2.20a1' +release = '0.2.20' html_favicon = ( 'https://raw.githubusercontent.com/camel-ai/camel/master/misc/favicon.png' diff --git a/docs/get_started/installation.md b/docs/get_started/installation.md index 0056b22c17..06915c969e 100644 --- a/docs/get_started/installation.md +++ b/docs/get_started/installation.md @@ -60,7 +60,7 @@ conda create --name camel python=3.10 conda activate camel # Clone github repo -git clone -b v0.2.20a1 https://github.com/camel-ai/camel.git +git clone -b v0.2.20 https://github.com/camel-ai/camel.git # Change directory into project directory cd camel diff --git a/docs/key_modules/loaders.md b/docs/key_modules/loaders.md index ed474408cb..d4835f4174 100644 --- a/docs/key_modules/loaders.md +++ b/docs/key_modules/loaders.md @@ -340,14 +340,14 @@ response = jina_reader.read_content("https://docs.camel-ai.org/") print(response) ``` ```markdown ->>>Welcome to CAMEL’s documentation! — CAMEL 0.2.20a1 documentation +>>>Welcome to CAMEL’s documentation! — CAMEL 0.2.20 documentation =============== [Skip to main content](https://docs.camel-ai.org/#main-content) Back to top Ctrl+K - [![Image 1](https://raw.githubusercontent.com/camel-ai/camel/master/misc/logo_light.png) ![Image 2](https://raw.githubusercontent.com/camel-ai/camel/master/misc/logo_light.png)CAMEL 0.2.20a1](https://docs.camel-ai.org/#) + [![Image 1](https://raw.githubusercontent.com/camel-ai/camel/master/misc/logo_light.png) ![Image 2](https://raw.githubusercontent.com/camel-ai/camel/master/misc/logo_light.png)CAMEL 0.2.20](https://docs.camel-ai.org/#) Search Ctrl+K diff --git a/pyproject.toml b/pyproject.toml index be8d51e04a..33d31c7938 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "camel-ai" -version = "0.2.20a1" +version = "0.2.20" authors = ["CAMEL-AI.org"] description = "Communicative Agents for AI Society Study" readme = "README.md"