From cb3b9dd76ff4500a457fbbe0659758cc82a7ae2c Mon Sep 17 00:00:00 2001 From: Calvin Rose Date: Thu, 31 Jan 2019 10:09:34 -0500 Subject: [PATCH] Update changelog an fix typos. --- CHANGELOG.md | 8 ++++++++ src/core/core.janet | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d64fd4af..d58720a4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,14 @@ # Changelog All notable changes to this project will be documented in this file. +## 0.4.0 - ?? +- Add debug/stacktrace for easy, pretty stacktraces +- Remove the status-pp function +- Update API to run-context to be much more sane +- Add :lflags option to cook/make-native +- Disallow NaNs as table or struct keys +- Update module resolution paths and format + ## 0.3.0 - 2019-26-01 - Add amalgamated build to janet for easier embedding. - Add os/date function diff --git a/src/core/core.janet b/src/core/core.janet index 1a10028a..6ae56e12 100644 --- a/src/core/core.janet +++ b/src/core/core.janet @@ -1518,7 +1518,7 @@ value, one key will be ignored." (error (res :error)))) (def module/paths - "The list of paths to look for modules. The followig + "The list of paths to look for modules. The following substitutions are preformed on each path. :sys: becomes module/*syspath*, :name: becomes the last part of the module name after the last /, and :all: is the module name literally.