From 6d3e91040ebc3dbb45bce999f65bb1ad6960e65d Mon Sep 17 00:00:00 2001 From: Garrett Michael Flynn Date: Mon, 20 May 2024 10:23:21 -0700 Subject: [PATCH 1/2] Update changelog and version in preparation for new release --- CHANGELOG.md | 9 +++++++-- pyproject.toml | 2 +- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 651a446..c62068b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ -## Unreleased -* Update the arguments for all `tqdm_publisher` classes to mirror the `tqdm` constructor, adding additional parameters as required keyword arguments. [PR #65](https://github.com/catalystneuro/tqdm_publisher/pull/65) +## v0.1.1 (May 20th, 2024) +* Patch release for consistent usage of our wrappers with the `tqdm.tqdm` class, particularly to support manual updates to the progress bar + +### Bug Fixes +- Updated the arguments for all `tqdm_publisher` classes to mirror the `tqdm` constructor, adding additional parameters as required keyword arguments. [PR #65](https://github.com/catalystneuro/tqdm_publisher/pull/65) + + ## v0.1.0 (April 26th, 2024) * The first alpha release of `tqdm_publisher`. diff --git a/pyproject.toml b/pyproject.toml index 0aa5d2b..0ed435a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ source = "vcs" [project] name = "tqdm_publisher" -version="0.1.0" +version="0.1.1" authors = [ { name="Garrett Flynn", email="garrett.flynn@catalystneuro.com" }, { name="Cody Baker", email="cody.baker@catalystneuro.com" }, From 59f6687485a0c01dcc86a5584cf6b9fc61bb11c6 Mon Sep 17 00:00:00 2001 From: Cody Baker <51133164+CodyCBakerPhD@users.noreply.github.com> Date: Mon, 20 May 2024 13:35:47 -0400 Subject: [PATCH 2/2] Update CHANGELOG.md --- CHANGELOG.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c62068b..fb87dfb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,6 @@ ## v0.1.1 (May 20th, 2024) -* Patch release for consistent usage of our wrappers with the `tqdm.tqdm` class, particularly to support manual updates to the progress bar + +Patch release for consistent usage of our wrappers with the `tqdm.tqdm` class, particularly to support manual updates to the progress bar. ### Bug Fixes - Updated the arguments for all `tqdm_publisher` classes to mirror the `tqdm` constructor, adding additional parameters as required keyword arguments. [PR #65](https://github.com/catalystneuro/tqdm_publisher/pull/65)