diff --git a/docs/conf.py b/docs/conf.py index 09efd2158..84a17e839 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -9,8 +9,8 @@ project = 'pyk' author = 'Runtime Verification, Inc' copyright = '2024, Runtime Verification, Inc' -version = '0.1.779' -release = '0.1.779' +version = '0.1.780' +release = '0.1.780' # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration diff --git a/package/version b/package/version index eddad3c85..e28e46c66 100644 --- a/package/version +++ b/package/version @@ -1 +1 @@ -0.1.779 +0.1.780 diff --git a/pyproject.toml b/pyproject.toml index 4469514ac..ef3d0e474 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "pyk" -version = "0.1.779" +version = "0.1.780" description = "" authors = [ "Runtime Verification, Inc. ", diff --git a/src/pyk/cli/args.py b/src/pyk/cli/args.py index d0891ded7..8b3daf323 100644 --- a/src/pyk/cli/args.py +++ b/src/pyk/cli/args.py @@ -381,6 +381,7 @@ def definition_args(self) -> ArgumentParser: type=str, help='Code selector expression to use when reading markdown.', ) + args.add_argument('--spec-module', dest='spec_module', type=str, help='Module with claims to be proven.') return args @cached_property