Skip to content

Commit e85208f

Browse files
rv-jenkinsrv-auditorehildenb
authored
Update dependency: deps/k_release (#536)
- A small fix to an error in the `sed` expression introduced here: #537 --------- Co-authored-by: devops <devops@runtimeverification.com> Co-authored-by: Everett Hildenbrandt <everett.hildenbrandt@gmail.com>
1 parent cb60e73 commit e85208f

File tree

8 files changed

+20
-20
lines changed

8 files changed

+20
-20
lines changed

.github/workflows/update-version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
run: |
2828
K_VERSION=$(cat ./deps/k_release)
2929
cd kmir
30-
sed -i 's! "kframework==v[0-9\.]*",! "kframework==v'${K_VERSION}',"!' pyproject.toml
30+
sed -i 's! "kframework==v[0-9\.]*",! "kframework==v'${K_VERSION}'",!' pyproject.toml
3131
uv lock --upgrade
3232
git add pyproject.toml uv.lock
3333
git commit -m 'kmir/{pyproject.toml,uv.lock}: sync uv files, K version '${K_VERSION} || true

deps/k_release

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7.1.241
1+
7.1.245

flake.lock

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
description = "kmir - ";
33
inputs = {
4-
k-framework.url = "github:runtimeverification/k/v7.1.241";
4+
k-framework.url = "github:runtimeverification/k/v7.1.245";
55
nixpkgs.follows = "k-framework/nixpkgs";
66
flake-utils.follows = "k-framework/flake-utils";
77
rv-utils.follows = "k-framework/rv-utils";

kmir/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "kmir"
7-
version = "0.3.124"
7+
version = "0.3.125"
88
description = ""
99
requires-python = "~=3.10"
1010
dependencies = [
11-
"kframework==v7.1.241",
11+
"kframework==v7.1.245",
1212
]
1313

1414
[[project.authors]]

kmir/src/kmir/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
from typing import Final
22

3-
VERSION: Final = '0.3.124'
3+
VERSION: Final = '0.3.125'

kmir/uv.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package/version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.3.124
1+
0.3.125

0 commit comments

Comments
 (0)