diff --git a/.github/workflows/dockerhub.yml b/.github/workflows/dockerhub.yml index 385f1ad874..a4de764b53 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.15.1-{{sha}} + type=raw,value={{branch}}-1.15.2-{{sha}} type=semver,pattern={{version}} - name: Build and push Docker image diff --git a/art/__init__.py b/art/__init__.py index 32816cf6a6..3e329a79e1 100644 --- a/art/__init__.py +++ b/art/__init__.py @@ -12,7 +12,7 @@ from art import preprocessing # Semantic Version -__version__ = "1.15.1" +__version__ = "1.15.2" # pylint: disable=C0103 diff --git a/docs/conf.py b/docs/conf.py index f348756a05..5ff50d1376 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -27,7 +27,7 @@ # The short X.Y version version = "1.15" # The full version, including alpha/beta/rc tags -release = "1.15.1" +release = "1.15.2" # -- General configuration ---------------------------------------------------