diff --git a/pyproject.toml b/pyproject.toml index 12fa3f2a..b4ab240a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "biscuit-editor" -version = "2.99.99" +version = "3.0.0" description = "A lightweight, fast, and extensible code editor with a growing community" authors = ["Billy "] license = "MIT" diff --git a/src/biscuit/__init__.py b/src/biscuit/__init__.py index 21120717..37ba6ea0 100644 --- a/src/biscuit/__init__.py +++ b/src/biscuit/__init__.py @@ -1,4 +1,4 @@ -__version__ = "2.99.99" +__version__ = "3.0.0" __version_info__ = tuple([int(num) for num in __version__.split(".")]) from .main import *