From d3c4f4c476481661e7042e802d3602e2acdd3449 Mon Sep 17 00:00:00 2001 From: David Nicholson Date: Sat, 26 Mar 2022 10:16:23 -0400 Subject: [PATCH] DEV: bump version to 3.4.0 [skip ci] --- CITATION.cff | 4 ++-- doc/CHANGELOG.md | 2 +- pyproject.toml | 2 +- src/crowsetta/__about__.py | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CITATION.cff b/CITATION.cff index 1df26c20..d0851bdf 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -21,5 +21,5 @@ url: 'https://crowsetta.readthedocs.io' repository-artifact: 'https://pypi.org/project/crowsetta/' license: BSD-3-Clause commit: d9f97f6fc3a7ae9bb3e3465548d61d3a7484ebbc -version: 3.3.0 -date-released: '2022-01-02' +version: 3.4.0 +date-released: '2022-03-26' diff --git a/doc/CHANGELOG.md b/doc/CHANGELOG.md index e16613b1..8b724614 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 +## 3.4.0 -- 2022-03-26 ### Added - add a `__repr__` to the `Transcriber` class [#145](https://github.com/NickleDave/crowsetta/pull/143). diff --git a/pyproject.toml b/pyproject.toml index 4edb9708..d791e2a2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,7 +18,7 @@ dependencies = [ "scipy >=1.4.1", "SoundFile >=0.10.3", ] -version = "3.3.0" +version = "3.4.0" readme = "README.md" license = {file = "LICENSE"} classifiers = [ diff --git a/src/crowsetta/__about__.py b/src/crowsetta/__about__.py index a80f9163..b914cdbd 100644 --- a/src/crowsetta/__about__.py +++ b/src/crowsetta/__about__.py @@ -23,7 +23,7 @@ __summary__ = "A tool to work with any format for annotating vocalizations" __uri__ = "https://github.com/NickleDave/crowsetta" -__version__ = "3.3.0" +__version__ = "3.4.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: @@ -35,4 +35,4 @@ __email__ = "nicholdav@gmail.com" __license__ = "BSD" -__copyright__ = "2019 %s" % __author__ +__copyright__ = "2019-present %s" % __author__