Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .github/workflows/update-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,17 @@ jobs:
uv lock --upgrade
git add pyproject.toml uv.lock
git commit -m '{pyproject.toml,uv.lock}: sync uv files, KMIR version '${KMIR_VERSION} || true
- name: 'Sync K definition files from feature/p-token'
run: |
git clone --depth 1 --branch feature/p-token \
https://github.com/runtimeverification/mir-semantics.git /tmp/mir-semantics
for f in p-token.md spl-token.md info.md; do
cp /tmp/mir-semantics/kmir/src/kmir/kdist/mir-semantics/symbolic/$f \
src/kompass/kdist/kompass/$f
sed -i 's|requires "../|requires "mir-semantics/|g' src/kompass/kdist/kompass/$f
done
rm -rf /tmp/mir-semantics
git add src/kompass/kdist/kompass/
git commit -m 'Sync K definition files from feature/p-token' || true
- name: 'Push updates'
run: git push
2 changes: 1 addition & 1 deletion package/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.18
0.1.19
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 = "hatchling.build"

[project]
name = "kompass"
version = "0.1.18"
version = "0.1.19"
description = "K Semantics for the Solana ecosystem"
requires-python = "~=3.10"
dependencies = [
Expand Down
6 changes: 3 additions & 3 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading