From 7f8754c4b858a687da436348d9cc6bdcc81d78cc Mon Sep 17 00:00:00 2001 From: David Nicholson Date: Mon, 9 Sep 2024 15:17:16 -0400 Subject: [PATCH] DEV: Bump version to 1.0.2 [skip ci] --- doc/CHANGELOG.md | 2 +- pyproject.toml | 2 +- src/vak/__about__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/CHANGELOG.md b/doc/CHANGELOG.md index 6764f699a..887c872d9 100644 --- a/doc/CHANGELOG.md +++ b/doc/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## Unreleased +## 1.0.2 ### Fixed - Make fixes to `FrameClassificationModel` so it works with `BioSoundSegBench` dataset [#774](https://github.com/vocalpy/vak/pull/774). diff --git a/pyproject.toml b/pyproject.toml index a089460d1..a661abeb5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "flit_core.buildapi" [project] name = "vak" description = "A neural network framework for researchers studying acoustic communication" -version = "1.0.1" +version = "1.0.2" authors = [ {name = "David Nicholson", email = "nickledave@users.noreply.github.com"} ] diff --git a/src/vak/__about__.py b/src/vak/__about__.py index 1a282c134..39f2120d7 100644 --- a/src/vak/__about__.py +++ b/src/vak/__about__.py @@ -23,7 +23,7 @@ __summary__ = "A neural network framework for researchers studying acoustic communication" __uri__ = "https://github.com/NickleDave/vak" -__version__ = "1.0.1" +__version__ = "1.0.2" if base_dir is not None and os.path.exists(os.path.join(base_dir, ".commit")): with open(os.path.join(base_dir, ".commit")) as fp: