1
0
mirror of https://github.com/janet-lang/janet synced 2024-06-22 21:23:16 +00:00

Merge branch 'master' into compile-opt

This commit is contained in:
Calvin Rose 2023-08-20 18:55:15 -05:00
commit c3a4fb6735

View File

@ -1,6 +1,12 @@
# Changelog
All notable changes to this project will be documented in this file.
## ??? - Unreleased
- Add `os/sigaction`
- Change `every?` and `any?` to behave like the functional versions of the `and` and `or` macros.
- Fix bug with garbage collecting threaded abstract types.
- Add `:signal` to the `sandbox` function to allow intercepting signals.
## 1.30.0 - 2023-08-05
- Change indexing of `array/remove` to start from -1 at the end instead of -2.
- Add new string escape sequences `\\a`, `\\b`, `\\?`, and `\\'`.