From 902148575d9593120629371d3be40d2a42838bb9 Mon Sep 17 00:00:00 2001 From: Beat Buesser Date: Wed, 2 Oct 2024 23:15:59 +0200 Subject: [PATCH] Bump version to ART 1.18.2 Signed-off-by: Beat Buesser --- .github/workflows/dockerhub.yml | 2 +- art/__init__.py | 2 +- docs/conf.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/dockerhub.yml b/.github/workflows/dockerhub.yml index 6ac7767c22..069f21c9d5 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.1-{{sha}} + type=raw,value={{branch}}-1.18.2-{{sha}} type=semver,pattern={{version}} - name: Build and push Docker image diff --git a/art/__init__.py b/art/__init__.py index 5671acfcbd..3fea487987 100644 --- a/art/__init__.py +++ b/art/__init__.py @@ -13,7 +13,7 @@ from art import preprocessing # Semantic Version -__version__ = "1.18.1" +__version__ = "1.18.2" LOGGING = { "version": 1, diff --git a/docs/conf.py b/docs/conf.py index 75d69d6b00..886c3d77e2 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.1" +release = "1.18.2" # -- General configuration ---------------------------------------------------