From cef7755d91534ab0294df2ac03d0084ccbb1fb57 Mon Sep 17 00:00:00 2001 From: Billy Date: Sun, 3 Nov 2024 15:08:44 +0530 Subject: [PATCH] chore: Bump version to `2.99.98` (nightly) --- .github/workflows/codequality.yml | 7 ++----- pyproject.toml | 2 +- src/biscuit/__init__.py | 2 +- 3 files changed, 4 insertions(+), 7 deletions(-) diff --git a/.github/workflows/codequality.yml b/.github/workflows/codequality.yml index f46e1797..96ec29f9 100644 --- a/.github/workflows/codequality.yml +++ b/.github/workflows/codequality.yml @@ -15,14 +15,11 @@ permissions: jobs: build: runs-on: ubuntu-latest - steps: - uses: actions/checkout@v4 - - name: Set up Python 3.10 - uses: actions/setup-python@v3 + - uses: actions/setup-python@v5 with: - python-version: "3.10" - + python-version: '3.12' - name: Install dependencies run: | sudo apt update diff --git a/pyproject.toml b/pyproject.toml index 4759a253..7d4b7490 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "biscuit-editor" -version = "2.99.97" +version = "2.99.98" 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 7b04fe5e..c4f5c243 100644 --- a/src/biscuit/__init__.py +++ b/src/biscuit/__init__.py @@ -1,4 +1,4 @@ -__version__ = "2.99.97" +__version__ = "2.99.98" __version_info__ = tuple([int(num) for num in __version__.split(".")]) from .main import *