Update version number

This commit is contained in:
mbsantiago 2026-05-07 09:39:02 +01:00
parent 6784815cd9
commit 42a7162c81
5 changed files with 5 additions and 5 deletions

View File

@ -1,5 +1,5 @@
[bumpversion] [bumpversion]
current_version = 1.1.1 current_version = 2.0.0b1
commit = True commit = True
tag = True tag = True

View File

@ -38,7 +38,7 @@ jobs:
uv.lock uv.lock
- name: Install dependencies - name: Install dependencies
run: just install-dev run: uv sync --all-extras --all-groups
- name: Build distributions - name: Build distributions
run: just build-dist run: just build-dist

View File

@ -9,7 +9,7 @@
project = "batdetect2" project = "batdetect2"
copyright = "2025, Oisin Mac Aodha, Santiago Martinez Balvanera" copyright = "2025, Oisin Mac Aodha, Santiago Martinez Balvanera"
author = "Oisin Mac Aodha, Santiago Martinez Balvanera" author = "Oisin Mac Aodha, Santiago Martinez Balvanera"
release = "1.1.1" release = "2.0.0b1"
# -- General configuration --------------------------------------------------- # -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration

View File

@ -1,6 +1,6 @@
[project] [project]
name = "batdetect2" 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." description = "Deep learning model for detecting and classifying bat echolocation calls in high frequency audio recordings."
authors = [ authors = [
{ "name" = "Oisin Mac Aodha", "email" = "oisin.macaodha@ed.ac.uk" }, { "name" = "Oisin Mac Aodha", "email" = "oisin.macaodha@ed.ac.uk" },

View File

@ -8,7 +8,7 @@ if TYPE_CHECKING:
from batdetect2.api_v2 import BatDetect2API from batdetect2.api_v2 import BatDetect2API
__all__ = ["BatDetect2API", "__version__"] __all__ = ["BatDetect2API", "__version__"]
__version__ = "1.1.1" __version__ = "2.0.0b1"
logger.disable("batdetect2") logger.disable("batdetect2")