From b966121a855e8cadeb32fb56615e0b1949c20b0e Mon Sep 17 00:00:00 2001 From: Everett Hildenbrandt Date: Thu, 19 Oct 2023 07:29:05 -0600 Subject: [PATCH] Fix master deployments (#111) * .github/master-push: correct way were building master image * Set Version: 0.1.30 * Set Version: 0.1.30 * Set Version: 0.1.31 * Set Version: 0.1.32 --------- Co-authored-by: devops Co-authored-by: rv-jenkins --- .github/workflows/master-push.yml | 3 ++- package/version | 2 +- pyproject.toml | 2 +- src/kontrol/__init__.py | 2 +- 4 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/master-push.yml b/.github/workflows/master-push.yml index d01a6c0b7..716ad4aa4 100644 --- a/.github/workflows/master-push.yml +++ b/.github/workflows/master-push.yml @@ -67,7 +67,8 @@ jobs: - name: 'Build Docker image' run: | K_VERSION=$(cat deps/k_release) - docker build . --no-cache --tag ${TAG} --build-arg K_VERSION=${K_VERSION} + Z3_VERSION=$(cat deps/z3) + docker build . --no-cache --tag ${TAG} --build-arg K_VERSION=${K_VERSION} --build-arg Z3_VERSION=${Z3_VERSION} - name: 'Run Docker image' run: docker run --rm ${TAG} kontrol --help diff --git a/package/version b/package/version index db7a48047..28d007539 100644 --- a/package/version +++ b/package/version @@ -1 +1 @@ -0.1.31 +0.1.32 diff --git a/pyproject.toml b/pyproject.toml index bcc4abc2b..2e8c90975 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "kontrol" -version = "0.1.31" +version = "0.1.32" description = "Foundry integration for KEVM" authors = [ "Runtime Verification, Inc. ", diff --git a/src/kontrol/__init__.py b/src/kontrol/__init__.py index c7c9d7be9..29d57dae6 100644 --- a/src/kontrol/__init__.py +++ b/src/kontrol/__init__.py @@ -5,4 +5,4 @@ if TYPE_CHECKING: from typing import Final -VERSION: Final = '0.1.31' +VERSION: Final = '0.1.32'