From 42a7162c81fe86c116faca8dc6437e14fbaae627 Mon Sep 17 00:00:00 2001 From: mbsantiago Date: Thu, 7 May 2026 09:39:02 +0100 Subject: [PATCH] Update version number --- .bumpversion.cfg | 2 +- .github/workflows/publish-pypi.yml | 2 +- docs/source/conf.py | 2 +- pyproject.toml | 2 +- src/batdetect2/__init__.py | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index e1e455d..cffcb4b 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.1.1 +current_version = 2.0.0b1 commit = True tag = True diff --git a/.github/workflows/publish-pypi.yml b/.github/workflows/publish-pypi.yml index 8dea627..605034c 100644 --- a/.github/workflows/publish-pypi.yml +++ b/.github/workflows/publish-pypi.yml @@ -38,7 +38,7 @@ jobs: uv.lock - name: Install dependencies - run: just install-dev + run: uv sync --all-extras --all-groups - name: Build distributions run: just build-dist diff --git a/docs/source/conf.py b/docs/source/conf.py index 075dac5..376b33f 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -9,7 +9,7 @@ project = "batdetect2" copyright = "2025, Oisin Mac Aodha, Santiago Martinez Balvanera" author = "Oisin Mac Aodha, Santiago Martinez Balvanera" -release = "1.1.1" +release = "2.0.0b1" # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration diff --git a/pyproject.toml b/pyproject.toml index bf2fc5f..cd3faf9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "batdetect2" -version = "1.1.1" +version = "2.0.0b1" description = "Deep learning model for detecting and classifying bat echolocation calls in high frequency audio recordings." authors = [ { "name" = "Oisin Mac Aodha", "email" = "oisin.macaodha@ed.ac.uk" }, diff --git a/src/batdetect2/__init__.py b/src/batdetect2/__init__.py index 42fd4bd..3b6554a 100644 --- a/src/batdetect2/__init__.py +++ b/src/batdetect2/__init__.py @@ -8,7 +8,7 @@ if TYPE_CHECKING: from batdetect2.api_v2 import BatDetect2API __all__ = ["BatDetect2API", "__version__"] -__version__ = "1.1.1" +__version__ = "2.0.0b1" logger.disable("batdetect2")