diff --git a/.github/workflows/dockerhub.yml b/.github/workflows/dockerhub.yml index 8334f63b86..34c8ac7aeb 100644 --- a/.github/workflows/dockerhub.yml +++ b/.github/workflows/dockerhub.yml @@ -35,7 +35,7 @@ jobs: with: images: adversarialrobustnesstoolbox/releases tags: | - type=raw,value={{branch}}-1.14.1-{{sha}} + type=raw,value={{branch}}-1.15.0-{{sha}} type=semver,pattern={{version}} - name: Build and push Docker image diff --git a/README-cn.md b/README-cn.md index 76e96aa704..d28fdc272c 100644 --- a/README-cn.md +++ b/README-cn.md @@ -1,4 +1,4 @@ -# Adversarial Robustness Toolbox (ART) v1.14 +# Adversarial Robustness Toolbox (ART) v1.15
diff --git a/README.md b/README.md index 729a52b8fa..ce701e8e05 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Adversarial Robustness Toolbox (ART) v1.14 +# Adversarial Robustness Toolbox (ART) v1.15
diff --git a/art/__init__.py b/art/__init__.py index 1243ceacd2..60111ef77f 100644 --- a/art/__init__.py +++ b/art/__init__.py @@ -12,7 +12,7 @@ from art import preprocessing # Semantic Version -__version__ = "1.14.1" +__version__ = "1.15.0" # pylint: disable=C0103 diff --git a/docs/conf.py b/docs/conf.py index 0e95bbb941..48d7fd3972 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -25,9 +25,9 @@ author = "Maria-Irina Nicolae" # The short X.Y version -version = "1.14" +version = "1.15" # The full version, including alpha/beta/rc tags -release = "1.14.1" +release = "1.15.0" # -- General configuration ---------------------------------------------------