From a6ec84fa93762a8ab9b4b063b65a51933e010892 Mon Sep 17 00:00:00 2001 From: David Nicholson Date: Thu, 4 Mar 2021 22:35:27 -0500 Subject: [PATCH] DEV: bump version to 3.1.1.post1 and update CHANGELOG --- doc/CHANGELOG.md | 9 +++++++++ pyproject.toml | 2 +- src/crowsetta/__about__.py | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/doc/CHANGELOG.md b/doc/CHANGELOG.md index d7c53741..fab9f32c 100644 --- a/doc/CHANGELOG.md +++ b/doc/CHANGELOG.md @@ -4,6 +4,15 @@ 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). +## 3.1.1.post1 -- 2021-03-04 +### fixed +- add missing `packages` to pyproject.toml so that `textgrid` is included + in build + [857ba09](https://github.com/NickleDave/crowsetta/commit/857ba097eedf45a38c33244fd7353bc7fdb48315) +- add metadata to pyproject.toml so that README is used as "long description" + and appears on PyPI + [e8b8209](https://github.com/NickleDave/crowsetta/commit/e8b8209fff5a3aa530b7ef93b015c6b35c5615a5) + ## 3.1.1 -- 2021-03-04 ### changed - switch to using `poetry` for development diff --git a/pyproject.toml b/pyproject.toml index b54db9b0..81d6b6f3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "crowsetta" -version = "3.1.1" +version = "3.1.1.post1" description = "A tool to work with any format for annotating vocalizations" authors = ["David Nicholson "] readme = "README.md" diff --git a/src/crowsetta/__about__.py b/src/crowsetta/__about__.py index 9b074b78..f326c020 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.1.1" +__version__ = "3.1.1.post1" 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: