From 3efd0bb380c32b89cc595888f50a3bf1cc0d61b6 Mon Sep 17 00:00:00 2001 From: Samuel Balco Date: Thu, 23 Nov 2023 10:03:00 +0000 Subject: [PATCH] Add nix dev shell (#200) * add dev shell * Set Version: 0.1.70 * Set Version: 0.1.71 --------- Co-authored-by: devops --- flake.nix | 4 ++++ package/version | 2 +- pyproject.toml | 2 +- src/kontrol/__init__.py | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/flake.nix b/flake.nix index d07d592c5..259a59039 100644 --- a/flake.nix +++ b/flake.nix @@ -151,6 +151,10 @@ ]; }; in { + devShell = kevm.devShell.${system}.overrideAttrs (old: { + buildInputs = old.buildInputs + ++ [ pkgs.foundry-bin (solc.mkDefault pkgs pkgs.solc_0_8_13) ]; + }); packages = { kontrol = pkgs.kontrol { }; default = pkgs.kontrol { }; diff --git a/package/version b/package/version index f0768f091..7c3ae4e02 100644 --- a/package/version +++ b/package/version @@ -1 +1 @@ -0.1.70 +0.1.71 diff --git a/pyproject.toml b/pyproject.toml index b6841dc49..0f698a85c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "kontrol" -version = "0.1.70" +version = "0.1.71" description = "Foundry integration for KEVM" authors = [ "Runtime Verification, Inc. ", diff --git a/src/kontrol/__init__.py b/src/kontrol/__init__.py index 3308efe7d..bb8cbcb99 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.70' +VERSION: Final = '0.1.71'