diff --git a/.github/workflows/dockerhub.yml b/.github/workflows/dockerhub.yml index ac8894f88d..bef8f87645 100644 --- a/.github/workflows/dockerhub.yml +++ b/.github/workflows/dockerhub.yml @@ -34,7 +34,7 @@ jobs: with: images: adversarialrobustnesstoolbox/releases tags: | - type=raw,value={{branch}}-1.18.0-{{sha}} + type=raw,value={{branch}}-1.18.1-{{sha}} type=semver,pattern={{version}} - name: Build and push Docker image diff --git a/art/__init__.py b/art/__init__.py index cb83fea13e..33090f7666 100644 --- a/art/__init__.py +++ b/art/__init__.py @@ -12,7 +12,7 @@ from art import preprocessing # Semantic Version -__version__ = "1.18.0" +__version__ = "1.18.1" # pylint: disable=C0103 diff --git a/docs/conf.py b/docs/conf.py index 4b8e17b435..75d69d6b00 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -27,7 +27,7 @@ # The short X.Y version version = "1.18" # The full version, including alpha/beta/rc tags -release = "1.18.0" +release = "1.18.1" # -- General configuration ---------------------------------------------------