1
0
mirror of https://github.com/janet-lang/janet synced 2025-02-03 02:39:09 +00:00

Prepare for 1.16.0 release.

This commit is contained in:
Calvin Rose 2021-05-30 12:15:56 -05:00
parent d204e06e11
commit b990d77f16
2 changed files with 6 additions and 3 deletions

View File

@ -1,7 +1,10 @@
# Changelog
All notable changes to this project will be documented in this file.
## ??? - Unreleased
## 1.16.0 - 2021-05-30
- Add color documentation to the `doc` macro - enable/disable with `(dyn :doc-color)`.
- Remove simpler HTML docs from distribution - use website or built-in documentation instead.
- Add compiler warnings and deprecation levels.
- Add `as-macro` to make using macros within quasiquote easier to do hygienically.
- Expose `JANET_OUT_OF_MEMORY` as part of the Janet API.
- Add `native-deps` option to `decalre-native` in `jpm`. This lets native libraries link to other

View File

@ -6,8 +6,8 @@
#define JANET_VERSION_MAJOR 1
#define JANET_VERSION_MINOR 16
#define JANET_VERSION_PATCH 0
#define JANET_VERSION_EXTRA "-dev"
#define JANET_VERSION "1.16.0-dev"
#define JANET_VERSION_EXTRA ""
#define JANET_VERSION "1.16.0"
/* #define JANET_BUILD "local" */