From 6390c304e39f160a903f623d9403d85398babf8b Mon Sep 17 00:00:00 2001 From: Billy Date: Sat, 5 Aug 2023 01:35:30 +0800 Subject: [PATCH] chore: Bump version to `0.25.7` --- 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 61bf235..5b41092 100644 --- a/cupcake/__init__.py +++ b/cupcake/__init__.py @@ -1,4 +1,4 @@ -__version__ = '0.25.7' +__version__ = '0.25.8' __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 b68383c..2c3e823 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "cupcake-editor" -version = "0.25.7" +version = "0.25.8" description = "Embeddable text editor with autocompletions" authors = ["Billy "] license = "MIT" diff --git a/tests/test_cupcake.py b/tests/test_cupcake.py index 5d66f1f..13c4ec7 100644 --- a/tests/test_cupcake.py +++ b/tests/test_cupcake.py @@ -7,4 +7,4 @@ def test_version(): - assert __version__ == '0.25.7' + assert __version__ == '0.25.8'