Skip to content

Commit 2c4cba7

Browse files
committed
chore: release 4.1.0
1 parent acb2420 commit 2c4cba7

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

CHANGELOG.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
11
# Change Log
22

3-
## [Unreleased version] - 20XX-XX-XX
3+
## [4.1.0] - 2025-12-12
44
### Breaking changes
55
- Function arguments are now immutable by default and an argument attribute `mut` must be added: `(fun (a b c) (set b 5))` -> `(fun (a (mut b) c) (set b 5))`
66

7+
### Deprecated
8+
- `dict:contains`, use `dict:contains?`
9+
- `math:even`, use `math:even?`
10+
- `math:odd`, use `math:odd?`
11+
712
### Added
813
- new builtin `disassemble` to print the bytecode of a function
914
- new builtin `io:readFileLines` to read lines from a file as a list of strings
@@ -14,8 +19,6 @@
1419
- renamed `math:even` to `math:even?`, and `math:odd` to `math:odd?`
1520
- `string:removeAt` can work with negative indexes
1621

17-
### Removed
18-
1922
## [4.0.0] - 2025-09-12
2023
### Added
2124
- more tests for the io builtins

lib/std

0 commit comments

Comments
 (0)