diff options
| author | 2021-12-06 17:25:35 -0600 | |
|---|---|---|
| committer | 2021-12-06 17:27:09 -0600 | |
| commit | 1c937ad960d3319f7dad6a534046e2f7f4aaca6c (patch) | |
| tree | f3f4526e3db96100c5cc719aee77750309249387 | |
| parent | More improvements to hashing for #889 (diff) | |
Prepare for 1.19.2 release. Update CHANGELOG.mdv1.19.2
| -rw-r--r-- | CHANGELOG.md | 5 | ||||
| -rw-r--r-- | src/conf/janetconf.h | 4 |
2 files changed, 5 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 11420fd7..923d034c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,9 @@ # Changelog All notable changes to this project will be documented in this file. -## Unreleased - ??? -- Update hash function. +## 1.19.2 - 2021-12-06 +- Fix bug with missing status lines in some stack traces. +- Update hash function to have better statistical properties. ## 1.19.1 - 2021-12-04 - Add an optional `prefix` parameter to `debug/stacktrace` to allow printing prettier error messages. diff --git a/src/conf/janetconf.h b/src/conf/janetconf.h index 8485c56b..b0719f80 100644 --- a/src/conf/janetconf.h +++ b/src/conf/janetconf.h @@ -6,8 +6,8 @@ #define JANET_VERSION_MAJOR 1 #define JANET_VERSION_MINOR 19 #define JANET_VERSION_PATCH 2 -#define JANET_VERSION_EXTRA "-dev" -#define JANET_VERSION "1.19.2-dev" +#define JANET_VERSION_EXTRA "" +#define JANET_VERSION "1.19.2" /* #define JANET_BUILD "local" */ |
