diff --git a/RELEASE.md b/RELEASE.md index 0ca3d67..bc27dd0 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -1,3 +1,35 @@ +# Release 1.0.0 + +## Major Features and Improvements + +### Differential privacy model training + +* Privacy leakage evaluation. + + * Parameter verification enhancement. + * Support parallel computing. + +### Model robustness evaluation + +* Fuzzing based Adversarial Robustness testing. + + * Parameter verification enhancement. + +### Other +* Api & Directory Structure + * Adjusted the directory structure based on different features. + * Optimize the structure of examples. +## Bugfixes + +## Contributors + +Thanks goes to these wonderful people: + +Liu Liu, Xiulang Jin, Zhidan Liu and Luobin Liu. + +Contributions of any kind are welcome! + + # Release 0.7.0-beta ## Major Features and Improvements diff --git a/setup.py b/setup.py index a7da9b9..ad48fe0 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ from setuptools import setup from setuptools.command.egg_info import egg_info from setuptools.command.build_py import build_py -version = '0.7.0' +version = '1.0.0' cur_dir = os.path.dirname(os.path.realpath(__file__)) pkg_dir = os.path.join(cur_dir, 'build')