From 135e7a822f8fea880ff6551ffea03450d51253a9 Mon Sep 17 00:00:00 2001 From: pkuliuliu Date: Thu, 20 Aug 2020 17:21:22 +0800 Subject: [PATCH] 0.7.0 release --- RELEASE.md | 27 +++++++++++++++++++++++++++ setup.py | 3 +-- 2 files changed, 28 insertions(+), 2 deletions(-) diff --git a/RELEASE.md b/RELEASE.md index 7f86880..0ca3d67 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -1,3 +1,30 @@ +# Release 0.7.0-beta + +## Major Features and Improvements + +### Differential privacy model training + +* Privacy leakage evaluation. + + * Using Membership inference to evaluate the effectiveness of privacy-preserving techniques for AI. + +### Model robustness evaluation + +* Fuzzing based Adversarial Robustness testing. + + * Coverage-guided test set generation. + +## Bugfixes + +## Contributors + +Thanks goes to these wonderful people: + +Liu Liu, Xiulang Jin, Zhidan Liu, Luobin Liu and Huanhuan Zheng. + +Contributions of any kind are welcome! + + # Release 0.6.0-beta ## Major Features and Improvements diff --git a/setup.py b/setup.py index 50e570d..a7da9b9 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.6.0' +version = '0.7.0' cur_dir = os.path.dirname(os.path.realpath(__file__)) pkg_dir = os.path.join(cur_dir, 'build') @@ -95,7 +95,6 @@ setup( license='Apache 2.0', packages=find_packages(), include_package_data=True, - zip_safe=False, cmdclass={ 'egg_info': EggInfo, 'build_py': BuildPy, -- GitLab