From 4aed4be702be5ce13d5017b8a3c6a2cdc4fc0009 Mon Sep 17 00:00:00 2001 From: Jonas Date: Mon, 1 Feb 2021 14:21:20 +0800 Subject: [PATCH] Hotfix to update a few strings from 3.0.1 to 3.1.0 --- README.md | 5 ++--- cleverhans/__init__.py | 2 +- setup.py | 4 ++-- 3 files changed, 5 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 80fe2201b..1eca4f41a 100644 --- a/README.md +++ b/README.md @@ -133,8 +133,7 @@ Although CleverHans is likely to work on many other machine configurations, we currently [test it](https://travis-ci.org/tensorflow/cleverhans) it with Python 3.5 and TensorFlow {1.8, 1.12} on Ubuntu 14.04.5 LTS (Trusty Tahr). Support for Python 2.7 is deprecated. -CleverHans 3.0.1 supports Python 2.7 and the master branch is likely to -continue to work in Python 2.7 for some time, but we no longer run the tests +CleverHans 3.1.0 supports Python 2.7, but we no longer run the tests in Python 2.7 and we do not plan to fix bugs affecting only Python 2.7 after 2019-07-04. Support for TensorFlow prior to 1.12 is deprecated. @@ -236,7 +235,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.1 of CleverHans. On a test set modified by the +adversarial attack using v3.1.0 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 diff --git a/cleverhans/__init__.py b/cleverhans/__init__.py index ddfbed404..ba5291b3a 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.1') +__version__ = append_dev_version('3.1.0') diff --git a/setup.py b/setup.py index 83dfdce4f..41e99b6d1 100644 --- a/setup.py +++ b/setup.py @@ -2,8 +2,8 @@ from setuptools import setup setup(name='cleverhans', - version='3.0.1', - url='https://github.com/tensorflow/cleverhans', + version='3.1.0', + url='https://github.com/cleverhans-lab/cleverhans/', license='MIT', install_requires=[ 'nose',