From c8038eb81708da78430bb6c45779a5f9c7cecea5 Mon Sep 17 00:00:00 2001 From: Nicolas Papernot Date: Tue, 27 Nov 2018 08:55:54 -0800 Subject: [PATCH 1/3] v.3.0.1 readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b0497d02c..0d7621fa2 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# CleverHans (latest release: v3.0.0) +# CleverHans (latest release: v3.0.1) cleverhans logo @@ -189,7 +189,7 @@ When reporting benchmarks, please: * Report any configuration variables used to determine the behavior of the attack. For example, you might report "We benchmarked the robustness of our method to -adversarial attack using v3.0.0 of CleverHans. On a test set modified by the +adversarial attack using v3.0.1 of CleverHans. On a test set modified by the `FastGradientMethod` with a max-norm `eps` of 0.3, we obtained a test set accuracy of 71.3%." ## Citing this work From 4f527e6d1452e21b58233a12e10b55a449aa7df1 Mon Sep 17 00:00:00 2001 From: Nicolas Papernot Date: Tue, 27 Nov 2018 08:56:54 -0800 Subject: [PATCH 2/3] setup.py to v301 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 62ab64e5d..4cdb6af08 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup setup(name='cleverhans', - version='3.0.0.post0', + version='3.0.1', url='https://github.com/tensorflow/cleverhans', license='MIT', install_requires=[ From 08544d7fb1fa4b08a4a3b33ac3f32c3c6b276216 Mon Sep 17 00:00:00 2001 From: Nicolas Papernot Date: Tue, 27 Nov 2018 08:57:27 -0800 Subject: [PATCH 3/3] init for v301 --- cleverhans/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cleverhans/__init__.py b/cleverhans/__init__.py index 31d730e2e..ddfbed404 100644 --- a/cleverhans/__init__.py +++ b/cleverhans/__init__.py @@ -3,4 +3,4 @@ # If possible attach a hex digest to the version string to keep track of # changes in the development branch -__version__ = append_dev_version('3.0.0.post0') +__version__ = append_dev_version('3.0.1')