diff --git a/CHANGELOG.md b/CHANGELOG.md index f9d02245..bac550c9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,11 @@ # Changelog All notable changes to this project will be documented in this file. -## Unreleased - ??? +## 1.10.1 - 2020-06-14 +- Fix bug with the `trace` function. - Add `:h`, `:a`, and `:c` flags to `thread/new` for creating new kinds of threads. + By default, threads will now consume much less memory per thread, but sending data between + threads may cost more. - Fix flychecking when using the `use` macro. - CTRL-C no longer exits the repl, and instead cancels the current form. - Various small bug fixes diff --git a/README.md b/README.md index 3ffc0f1b..5be52330 100644 --- a/README.md +++ b/README.md @@ -146,6 +146,7 @@ cd janet meson setup build \ --buildtype release \ --optimization 2 \ + --libdir /usr/local/lib \ -Dgit_hash=$(git log --pretty=format:'%h' -n 1) ninja -C build