diff --git a/install-k b/install-k index bf0d07570a6..bffc10d3af5 100755 --- a/install-k +++ b/install-k @@ -1,6 +1,6 @@ #!/bin/sh -e -K_VERSION=7.0.0 +K_VERSION=7.0.1 if [ `id -u` -ne 0 ]; then echo "$0: error: This script must be run as root." diff --git a/package/debian/changelog b/package/debian/changelog index 3941f4c954a..c5c56e4dad0 100644 --- a/package/debian/changelog +++ b/package/debian/changelog @@ -1,4 +1,4 @@ -kframework (7.0.0) unstable; urgency=medium +kframework (7.0.1) unstable; urgency=medium * Initial Release. diff --git a/package/version b/package/version index 66ce77b7ead..9fe9ff9d996 100644 --- a/package/version +++ b/package/version @@ -1 +1 @@ -7.0.0 +7.0.1 diff --git a/pyk/docs/conf.py b/pyk/docs/conf.py index 89bbb3ff5ea..276afec18ac 100644 --- a/pyk/docs/conf.py +++ b/pyk/docs/conf.py @@ -9,8 +9,8 @@ project = 'pyk' author = 'Runtime Verification, Inc' copyright = '2024, Runtime Verification, Inc' -version = '7.0.0' -release = '7.0.0' +version = '7.0.1' +release = '7.0.1' # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration diff --git a/pyk/pyproject.toml b/pyk/pyproject.toml index 8fb6dd062a9..eef29f334ea 100644 --- a/pyk/pyproject.toml +++ b/pyk/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "pyk" -version = "7.0.0" +version = "7.0.1" description = "" authors = [ "Runtime Verification, Inc. ", diff --git a/pyk/src/pyk/__init__.py b/pyk/src/pyk/__init__.py index 2a0678f315a..cdf3f9027ce 100644 --- a/pyk/src/pyk/__init__.py +++ b/pyk/src/pyk/__init__.py @@ -6,4 +6,4 @@ from typing import Final -__version__: Final = '7.0.0' +__version__: Final = '7.0.1'