Skip to content

Commit 9cb43e0

Browse files
committed
chore: release ArkScript 4.2.0
1 parent 2d04180 commit 9cb43e0

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
run: |
6060
mkdir -p artifact/lib/std
6161
cp build/arkscript artifact
62-
cp build/libArkReactor.* artifact
62+
cp build/bin/libArkReactor.* artifact
6363
cp lib/*.arkm artifact/lib
6464
cp lib/std/*.ark artifact/lib/std
6565
rm -rf artifact/lib/std/{.git,.github,tests/__arkscript__}

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Change Log
22

3-
## [Unreleased changes] - 20XX-XX-XX
3+
## [4.2.0] - 2026-02-04
44
### Breaking changes
55
- `assert` is no longer an instruction but a builtin
66
- when comparing values of different types using `<`, `>`, `<=`, `>=` and `=`, the result will always be `false` (it used to rely on the type index)

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ project(ark CXX)
44

55
# ArkScript version (have to manually update it)
66
set(ARK_VERSION_MAJOR 4)
7-
set(ARK_VERSION_MINOR 1)
8-
set(ARK_VERSION_PATCH 2)
7+
set(ARK_VERSION_MINOR 2)
8+
set(ARK_VERSION_PATCH 0)
99

1010
# determine whether this is a standalone project or included by other projects
1111
if (CMAKE_PROJECT_NAME STREQUAL PROJECT_NAME)

0 commit comments

Comments
 (0)