From ea3a8f011f45475c4966522f060f83bd76e768fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Billy=20=E3=83=93=E3=83=AA=E3=82=A2=E3=83=A0?= Date: Sat, 13 Jan 2024 04:47:40 +0530 Subject: [PATCH 1/2] Update pyproject.toml --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 33169265..47630d7e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "biscuit" -version = "2.57.0" +version = "2.58.0" description = "The uncompromising code editor" authors = ["Billy "] license = "MIT" From 04c684e95598d735ad8f97400aa2687be75a8504 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Billy=20=E3=83=93=E3=83=AA=E3=82=A2=E3=83=A0?= Date: Sat, 13 Jan 2024 04:48:31 +0530 Subject: [PATCH 2/2] Update __init__.py --- biscuit/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/biscuit/__init__.py b/biscuit/__init__.py index 000dec45..d9b733fd 100644 --- a/biscuit/__init__.py +++ b/biscuit/__init__.py @@ -1,4 +1,4 @@ -__version__ = '2.57.0' +__version__ = '2.58.0' __version_info__ = tuple([ int(num) for num in __version__.split('.')]) # For tests to run successfully