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"]}, )