Skip to content

Commit ee34353

Browse files
committed
chore: bump all compiler and package versions to 0.4.2
1 parent d9b8750 commit ee34353

File tree

26 files changed

+42
-42
lines changed

26 files changed

+42
-42
lines changed

compilers/go/compiler/compiler.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,8 @@ type Artifact struct {
8585
}
8686

8787
const (
88-
schemaVersion = "runar-v0.4.1"
89-
compilerVersion = "0.4.1-go"
88+
schemaVersion = "runar-v0.4.2"
89+
compilerVersion = "0.4.2-go"
9090
)
9191

9292
// ---------------------------------------------------------------------------

compilers/python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "runar-compiler"
3-
version = "0.4.1"
3+
version = "0.4.2"
44
description = "Runar smart contract compiler - Python implementation"
55
requires-python = ">=3.10"
66
dependencies = []

compilers/python/runar_compiler/compiler.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,8 @@ class Artifact:
9090
anf: ANFProgram | None = None
9191

9292

93-
SCHEMA_VERSION = "runar-v0.4.1"
94-
COMPILER_VERSION = "0.4.1-python"
93+
SCHEMA_VERSION = "runar-v0.4.2"
94+
COMPILER_VERSION = "0.4.2-python"
9595

9696

9797
# ---------------------------------------------------------------------------

compilers/ruby/lib/runar_compiler/compiler.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,8 @@ def initialize(
8888
end
8989
end
9090

91-
SCHEMA_VERSION = "runar-v0.4.1"
92-
COMPILER_VERSION = "0.4.1-ruby"
91+
SCHEMA_VERSION = "runar-v0.4.2"
92+
COMPILER_VERSION = "0.4.2-ruby"
9393

9494
# -------------------------------------------------------------------------
9595
# CompilationError

compilers/rust/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

compilers/rust/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "runar-compiler-rust"
3-
version = "0.4.1"
3+
version = "0.4.2"
44
edition = "2021"
55
description = "Rust implementation of the Rúnar compiler (full pipeline: .runar.ts → Bitcoin Script)"
66
license = "MIT"

compilers/zig/src/codegen/emit.zig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -473,10 +473,10 @@ pub fn emitArtifact(
473473
try w.writeAll("{");
474474

475475
// version
476-
try w.writeAll("\"version\":\"runar-v0.4.1\",");
476+
try w.writeAll("\"version\":\"runar-v0.4.2\",");
477477

478478
// compilerVersion
479-
try w.writeAll("\"compilerVersion\":\"0.4.1-zig\",");
479+
try w.writeAll("\"compilerVersion\":\"0.4.2-zig\",");
480480

481481
// contractName
482482
try w.writeAll("\"contractName\":");

end2end-example/rust/Cargo.lock

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

examples/rust/Cargo.lock

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

integration/rust/Cargo.lock

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

0 commit comments

Comments
 (0)