From 72eda972b0f652dfcfce84a90cec36bc572d9569 Mon Sep 17 00:00:00 2001 From: Labbeti Date: Fri, 21 Jul 2023 19:34:32 +0200 Subject: [PATCH] Mod: Update version in CHANGELOG, CITATION, README and __init__.py files. --- CHANGELOG.md | 2 +- CITATION.cff | 4 ++-- README.md | 4 ++-- src/aac_metrics/__init__.py | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c0b1926..6e9c180 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ All notable changes to this project will be documented in this file. -## [0.4.4] UNRELEASED +## [0.4.4] 2023-07-21 ### Added - `Evaluate` class now implements a `__hash__` and `tolist()` methods. - BLEU 1 to n classes and functions. diff --git a/CITATION.cff b/CITATION.cff index 82dad3a..34c0936 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -19,5 +19,5 @@ keywords: - captioning - audio-captioning license: MIT -version: 0.4.3 -date-released: '2023-06-15' +version: 0.4.4 +date-released: '2023-07-21' diff --git a/README.md b/README.md index b0a12dc..9bf2f77 100644 --- a/README.md +++ b/README.md @@ -212,10 +212,10 @@ If you use this software, please consider cite it as below : Labbe_aac-metrics_2023, author = {Labbé, Etienne}, license = {MIT}, - month = {6}, + month = {7}, title = {{aac-metrics}}, url = {https://github.com/Labbeti/aac-metrics/}, - version = {0.4.3}, + version = {0.4.4}, year = {2023}, } ``` diff --git a/src/aac_metrics/__init__.py b/src/aac_metrics/__init__.py index 0285f4d..bb83dc4 100644 --- a/src/aac_metrics/__init__.py +++ b/src/aac_metrics/__init__.py @@ -10,7 +10,7 @@ __license__ = "MIT" __maintainer__ = "Etienne Labbé (Labbeti)" __status__ = "Development" -__version__ = "0.4.3" +__version__ = "0.4.4" from .classes.base import AACMetric