From eab406f0590f4e90a36530cada52a78b0c676a80 Mon Sep 17 00:00:00 2001 From: David Nicholson Date: Thu, 9 Feb 2023 19:30:23 -0500 Subject: [PATCH] DEV: Bump version to 0.9.0 --- doc/CHANGELOG.md | 2 +- pyproject.toml | 2 +- src/tweetynet/__about__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/CHANGELOG.md b/doc/CHANGELOG.md index 110c0e6..d611c61 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 +## 0.9.0 -- 2023-02-09 ### Added - Add ability to use model with post-processing transform, by adding `post_tfm` parameter to `TweetyNetModel.from_config` method. diff --git a/pyproject.toml b/pyproject.toml index e253377..9817880 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "tweetynet" description = "neural network that segments and labels birdsong and other animal vocalizations" -version = "0.8.0" +version = "0.9.0" authors = [ {name = "Yarden Cohen", email = "yardencsgithub@users.noreply.github.com"}, {name = "David Nicholson", email = "nickledave@users.noreply.github.com"}, diff --git a/src/tweetynet/__about__.py b/src/tweetynet/__about__.py index b41d4f3..3e686e6 100644 --- a/src/tweetynet/__about__.py +++ b/src/tweetynet/__about__.py @@ -23,7 +23,7 @@ __summary__ = "neural network that segments and labels birdsong and other animal vocalizations" __uri__ = "https://github.com/yardencsGitHub/tweetynet" -__version__ = "0.8.0" +__version__ = "0.9.0" 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: