From b7ea9c2f445140e0d07bf1c9f59fb4cde42855dd Mon Sep 17 00:00:00 2001 From: Richard Preen Date: Tue, 25 Jun 2024 19:18:03 +0100 Subject: [PATCH] Prepare for v.0.4.6 (#221) * prepare for v.0.4.6 * update CHANGELOG --- CHANGELOG.md | 24 +++++++++++++++++++----- CITATION.cff | 6 +++--- acro/version.py | 2 +- setup.cfg | 2 +- 4 files changed, 24 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 35aad39..930ee1a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,26 @@ # Changelog -## Development -## Version 0.4.5 (November 15, 2023) -* Changes -* CI updates, version numbers +## Version 0.4.6 (Jun 25, 2024) +Changes: +* Add mode aggregation function ([#194](https://github.com/AI-SDC/ACRO/pull/194)) +* Update Stata examples ([#197](https://github.com/AI-SDC/ACRO/pull/197)) +* Various minor bug fixes, including fixing suppression when `margins=True` +* Update CI ([#207](https://github.com/AI-SDC/ACRO/pull/207), [#208](https://github.com/AI-SDC/ACRO/pull/208)) +* Update packaging ([#209](https://github.com/AI-SDC/ACRO/pull/209)) +* Improve robustness of `create_dataframe()` ([#211](https://github.com/AI-SDC/ACRO/pull/211)) +* Add Ruff linting/formatting ([#210](https://github.com/AI-SDC/ACRO/pull/210), [#214](https://github.com/AI-SDC/ACRO/pull/214)) +* PEP 257 docstring formatting ([#212](https://github.com/AI-SDC/ACRO/pull/212)) +* Remove useless pylint suppression ([#213](https://github.com/AI-SDC/ACRO/pull/213)) +* Fix code coverage reporting ([#215](https://github.com/AI-SDC/ACRO/pull/215)) +* Limit numpy dependency to less than v2.0.0 ([#220](https://github.com/AI-SDC/ACRO/pull/220)) + +## Version 0.4.5 (Nov 16, 2023) + +Changes: +* CI updates, version numbers -## Version 0.4.4 (November 15, 2023) +## Version 0.4.4 (Nov 15, 2023) Changes: * Update table suppression when totals are true for pivot table ([#165](https://github.com/AI-SDC/ACRO/pull/165)) diff --git a/CITATION.cff b/CITATION.cff index 20f8405..ba5bf9c 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -1,8 +1,8 @@ cff-version: 1.2.0 title: ACRO -version: 0.4.3 -doi: 10.5281/zenodo.8370642 -date-released: 2023-09-22 +version: 0.4.6 +doi: +date-released: license: MIT repository-code: https://github.com/AI-SDC/ACRO languages: diff --git a/acro/version.py b/acro/version.py index 6c3e499..694c981 100644 --- a/acro/version.py +++ b/acro/version.py @@ -1,3 +1,3 @@ """ACRO version number.""" -__version__ = "0.4.5" +__version__ = "0.4.6" diff --git a/setup.cfg b/setup.cfg index 5754f3d..5953584 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = acro -version = 0.4.5 +version = 0.4.6 description = ACRO: Tools for the Automatic Checking of Research Outputs long_description = file: README.md long_description_content_type = text/markdown