From aa121452ef1491fe794426ded09448c7ee827781 Mon Sep 17 00:00:00 2001 From: Billy Date: Fri, 21 Jul 2023 21:02:44 +0800 Subject: [PATCH] chore: Bump up version to `0.25.5` --- cupcake/__init__.py | 2 +- pyproject.toml | 2 +- tests/test_cupcake.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cupcake/__init__.py b/cupcake/__init__.py index 6c8612a..0c36c57 100644 --- a/cupcake/__init__.py +++ b/cupcake/__init__.py @@ -1,4 +1,4 @@ -__version__ = '0.25.4' +__version__ = '0.25.5' __version_info__ = tuple([ int(num) for num in __version__.split('.')]) __all__ = ["Editor", "get_editor", "DiffEditor", "ImageViewer", "TextEditor", "Config", "Languages"] diff --git a/pyproject.toml b/pyproject.toml index 8448e5a..f044a72 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "cupcake" -version = "0.25.0" +version = "0.25.5" description = "Embeddable code editor for python apps" authors = ["Billy "] license = "MIT" diff --git a/tests/test_cupcake.py b/tests/test_cupcake.py index 56712fc..428034d 100644 --- a/tests/test_cupcake.py +++ b/tests/test_cupcake.py @@ -7,4 +7,4 @@ def test_version(): - assert __version__ == '0.25.0' + assert __version__ == '0.25.5'