diff --git a/RELEASE.md b/RELEASE.md index 7f86880ed537716809df88ffa23346fb9622b8d4..0ca3d67b7873103f4b40f56adf889c45cd83470d 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 50e570d237d8f1e59cb1719b3530362fad395b42..a7da9b922cf24e8f47a8e6ed4931b1f291d174cc 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,