From b990d77f167135b175cd4eb4f1261698bdb917ac Mon Sep 17 00:00:00 2001 From: Calvin Rose Date: Sun, 30 May 2021 12:15:56 -0500 Subject: [PATCH] Prepare for 1.16.0 release. --- CHANGELOG.md | 5 ++++- src/conf/janetconf.h | 4 ++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b30f81ead..2393dcf9a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/src/conf/janetconf.h b/src/conf/janetconf.h index 2d91fbf00..8cd638c93 100644 --- a/src/conf/janetconf.h +++ b/src/conf/janetconf.h @@ -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" */