Skip to content

Commit

Permalink
Add nix dev shell (#200)
Browse files Browse the repository at this point in the history
* add dev shell

* Set Version: 0.1.70

* Set Version: 0.1.71

---------

Co-authored-by: devops <[email protected]>
  • Loading branch information
goodlyrottenapple and devops authored Nov 23, 2023
1 parent b24bb54 commit 3efd0bb
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 { };
Expand Down
2 changes: 1 addition & 1 deletion package/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.70
0.1.71
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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. <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion src/kontrol/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
if TYPE_CHECKING:
from typing import Final

VERSION: Final = '0.1.70'
VERSION: Final = '0.1.71'

0 comments on commit 3efd0bb

Please sign in to comment.