1
0
mirror of https://github.com/janet-lang/janet synced 2024-11-25 01:37:19 +00:00

Prepare for 1.16.1 release.

This commit is contained in:
Calvin Rose 2021-06-09 19:08:24 -05:00
parent 2eadb21eb7
commit 87f8fe14dd
3 changed files with 4 additions and 4 deletions

View File

@ -1,7 +1,7 @@
# Changelog # Changelog
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
## 1.16.1 - ??? ## 1.16.1 - 2021-06-09
- Add `maclintf` - a utility for adding linting messages when inside macros. - Add `maclintf` - a utility for adding linting messages when inside macros.
- Print source code of offending line on compiler warnings and errors. - Print source code of offending line on compiler warnings and errors.
- Fix some issues with linting and re-add missing `make docs`. - Fix some issues with linting and re-add missing `make docs`.

View File

@ -1,5 +1,5 @@
# The core janet library # The core janet library
# Copyright 2020 © Calvin Rose # Copyright 2021 © Calvin Rose
### ###
### ###

View File

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