From a54f6d1c2a629819a05ac4061162f5ca59f5f124 Mon Sep 17 00:00:00 2001 From: Fayaz Rahman Date: Sun, 10 Mar 2024 16:23:47 +0530 Subject: [PATCH] bump version --- docs/source/conf.py | 2 +- loopgpt/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index 6ed4b2f..dbdec11 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -9,7 +9,7 @@ project = "LoopGPT" copyright = "2023, Fariz Rahman, Fayaz Rahman" author = "Fariz Rahman, Fayaz Rahman" -release = "0.1.0" +release = "0.1.1" # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration diff --git a/loopgpt/__init__.py b/loopgpt/__init__.py index 5fb01db..6dd70de 100644 --- a/loopgpt/__init__.py +++ b/loopgpt/__init__.py @@ -1,7 +1,7 @@ """LoopGPT is a modular Auto-GPT framework """ -__version__ = "0.1.0" +__version__ = "0.1.1" from loopgpt.agent import Agent, empty_agent diff --git a/setup.py b/setup.py index 4048d99..b4f0e75 100644 --- a/setup.py +++ b/setup.py @@ -30,7 +30,7 @@ extras_require=extras_require, packages=find_packages(), name=package_name, - version="0.1.0", + version="0.1.1", description="Modular Auto-GPT Framework", entry_points={"console_scripts": ["loopgpt = loopgpt.loops.cli:main"]}, )