From 61901cf7ac29d27d554feaeca008f0ebb1c3ad03 Mon Sep 17 00:00:00 2001 From: Richard Preen Date: Mon, 5 Jun 2023 21:29:16 +0100 Subject: [PATCH] prepare for v.1.0.5 --- CHANGELOG.md | 20 ++++++++++++++++++++ CITATION.cff | 6 +++--- docs/source/conf.py | 2 +- setup.py | 2 +- 4 files changed, 25 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2f477d5c..43842c30 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,25 @@ # Changelog +## Version 1.0.5 (Jun 5, 2023) + +Changes: +* Fix a bug calculating the number of data samples in the `Data` class ([#105](https://github.com/AI-SDC/AI-SDC/pull/105)) +* Add a fail-fast mechanism for the worst case attack that enables the number of attack repetitions to terminate early based on a given metric and comparison operator ([#105](https://github.com/AI-SDC/AI-SDC/pull/105)) +* Change the logging message when attack repetitions are run to 1-10 instead of 0-9 ([#105](https://github.com/AI-SDC/AI-SDC/pull/105)) +* Add the ability to specify the number of worst case attack dummy repetitions on the command line ([#105](https://github.com/AI-SDC/AI-SDC/pull/105)) +* Add LIRA fail-fast mechanism ([#118](https://github.com/AI-SDC/AI-SDC/pull/118)) +* Add the ability to load LIRA attack parameters from a config file ([#118](https://github.com/AI-SDC/AI-SDC/pull/118)) +* Add the ability to load worst case attack parameters from a config file ([#119](https://github.com/AI-SDC/AI-SDC/pull/119)) +* Standardise the MIA attack output ([#120](https://github.com/AI-SDC/AI-SDC/pull/120)) +* Prohibit the use of white space in report file names ([#154](https://github.com/AI-SDC/AI-SDC/pull/154)) +* Improve the safemodel request release test ([#160](https://github.com/AI-SDC/AI-SDC/pull/160)) +* Refactor LIRA attack tests ([#151](https://github.com/AI-SDC/AI-SDC/pull/151)) +* Fix setting the number of LIRA shadow models from a config file ([#165](https://github.com/AI-SDC/AI-SDC/pull/165)) +* Fix OS system calls relying on calling "python" ([#162](https://github.com/AI-SDC/AI-SDC/pull/162)) +* Fix invalid command line argument in worst case attack example ([#164](https://github.com/AI-SDC/AI-SDC/pull/164)) +* Add current output JSON format documentation ([#168](https://github.com/AI-SDC/AI-SDC/pull/168)) +* Add current attack config format documentation ([#168](https://github.com/AI-SDC/AI-SDC/pull/168)) + ## Version 1.0.4 (May 5, 2023) Changes: diff --git a/CITATION.cff b/CITATION.cff index 6658e960..c2c7c50b 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -1,8 +1,8 @@ cff-version: 1.2.0 title: AI-SDC -version: 1.0.4 -doi: 10.5281/zenodo.7900410 -date-released: 2023-05-05 +version: 1.0.5 +doi: +date-released: 2023-06-05 license: MIT repository-code: https://github.com/AI-SDC/AI-SDC languages: diff --git a/docs/source/conf.py b/docs/source/conf.py index d55791b8..cde932b0 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -13,7 +13,7 @@ project = "GRAIMATTER" copyright = "2023, GRAIMATTER and SACRO Project Team" author = "GRAIMATTER and SACRO Project Team" -release = "1.0.3" +release = "1.0.5" # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index 32c25b1f..a512d868 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ setup( name="aisdc", - version="1.0.4", + version="1.0.5", license="MIT", maintainer="Jim Smith", maintainer_email="james.smith@uwe.ac.uk",