Skip to content
Merged
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
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ on:
workflow_dispatch:
inputs:
version:
description: "Version tag (e.g., v1.4.0)"
description: "Version tag (e.g., v1.4.1)"
required: true
default: "v1.4.0"
default: "v1.4.1"
type: string

env:
Expand All @@ -22,7 +22,7 @@ jobs:
uses: actions/checkout@v5

- name: Set version
run: echo "version=${{ github.event.inputs.version || 'v1.4.0' }}" >> $GITHUB_ENV
run: echo "version=${{ github.event.inputs.version || 'v1.4.1' }}" >> $GITHUB_ENV

- name: Install solc # svm should support arm64 linux
run: (hash svm 2>/dev/null || cargo install --version 0.2.23 svm-rs) && svm install 0.8.19 && solc --version
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/versioning.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ on:
workflow_dispatch:
inputs:
version:
description: "Version tag to compare (e.g., v1.4.0)"
description: "Version tag to compare (e.g., v1.4.1)"
required: true
default: "v1.4.0"
default: "v1.4.1"
type: string

jobs:
Expand All @@ -19,7 +19,7 @@ jobs:
uses: actions/checkout@v5

- name: Set version fallback
run: echo "version=${{ github.event.inputs.version || 'v1.4.0' }}" >> $GITHUB_ENV
run: echo "version=${{ github.event.inputs.version || 'v1.4.1' }}" >> $GITHUB_ENV

- name: Install solc # svm should support arm64 linux
run: (hash svm 2>/dev/null || cargo install --version 0.2.23 svm-rs) && svm install 0.8.19 && solc --version
Expand Down
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ All notable changes to OpenVM will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project follows a versioning principles documented in [VERSIONING.md](./VERSIONING.md).

## v1.4.1 (Unreleased)
## Unreleased

## v1.4.1 (2025-10-26)

### Added
- (CLI) Add configurable segmentation arguments to `cargo openvm prove` commands.
Expand Down
Loading