1
0
mirror of https://github.com/janet-lang/janet synced 2025-06-02 14:44:13 +00:00

Update CHANGELOG.md

This commit is contained in:
Calvin Rose 2021-01-11 18:54:50 -06:00
parent 5e1a8c86f9
commit 9078d3bd37
2 changed files with 2 additions and 2 deletions

View File

@ -27,6 +27,7 @@ All notable changes to this project will be documented in this file.
the project root. This is backwards incompatible and dependencies should be updated for this. the project root. This is backwards incompatible and dependencies should be updated for this.
- Change hash function for numbers. - Change hash function for numbers.
- Improve error handling of `dofile`. - Improve error handling of `dofile`.
- Bug fixes in networking code and improvements in doc strings.
## 1.13.1 - 2020-12-13 ## 1.13.1 - 2020-12-13
- Pretty printing a table with a prototype will look for `:_name` instead of `:name` - Pretty printing a table with a prototype will look for `:_name` instead of `:name`

View File

@ -74,7 +74,6 @@
(calc-2 "(+ 9 10 11 12)")) (calc-2 "(+ 9 10 11 12)"))
@[10 26 42]) "parallel subprocesses 2") @[10 26 42]) "parallel subprocesses 2")
# Net testing # Net testing
(repeat 10 (repeat 10
@ -132,6 +131,6 @@
(assert-error "bad arity to ev/call" (ev/call inc 1 2 3)) (assert-error "bad arity to ev/call" (ev/call inc 1 2 3))
(assert (os/execute [(dyn :executable) "-e" `(+ 1 2 3)`] :xp) "os/execute self") (assert (os/execute [janet "-e" `(+ 1 2 3)`] :xp) "os/execute self")
(end-suite) (end-suite)