Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
FayazRahman committed Apr 23, 2023
1 parent 339646e commit c880918
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion loopgpt/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.0.9"
__version__ = "0.0.10"


from loopgpt.agent import Agent
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
extras_require=extras_require,
packages=find_packages(),
name=package_name,
version="0.0.9",
version="0.0.10",
description="Modular Auto-GPT Framework",
entry_points={"console_scripts": ["loopgpt = loopgpt.loops.cli:main"]},
)

2 comments on commit c880918

@EwoutH
Copy link
Contributor

@EwoutH EwoutH commented on c880918 Apr 24, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

When you bump the version, it would be great to create a release. This way it's easier to use the latest version, keep track of changes between version, etc. You can also label it as pre-release if applicable.

@FayazRahman
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Will create release @EwoutH

Please sign in to comment.