1
0
mirror of https://github.com/janet-lang/janet synced 2025-06-29 16:43:01 +00:00

Version bump.

This commit is contained in:
Calvin Rose 2021-02-09 20:32:09 -06:00
parent c85310578b
commit 771b0d0ab1
4 changed files with 9 additions and 5 deletions

View File

@ -1,6 +1,10 @@
# 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.
## Unreleased - ???
- Fix documentation typos
- Fix peg integer reading combinators when used with capture tags.
## 1.15.0 - 2021-02-08 ## 1.15.0 - 2021-02-08
- Fix `gtim` and `ltim` bytecode instructions on non-integer values. - Fix `gtim` and `ltim` bytecode instructions on non-integer values.
- Clean up output of flychecking to be the same as the repl. - Clean up output of flychecking to be the same as the repl.

View File

@ -20,7 +20,7 @@
project('janet', 'c', project('janet', 'c',
default_options : ['c_std=c99', 'b_lundef=false', 'default_library=both'], default_options : ['c_std=c99', 'b_lundef=false', 'default_library=both'],
version : '1.15.0') version : '1.15.1')
# Global settings # Global settings
janet_path = join_paths(get_option('prefix'), get_option('libdir'), 'janet') janet_path = join_paths(get_option('prefix'), get_option('libdir'), 'janet')

View File

@ -5,9 +5,9 @@
#define JANET_VERSION_MAJOR 1 #define JANET_VERSION_MAJOR 1
#define JANET_VERSION_MINOR 15 #define JANET_VERSION_MINOR 15
#define JANET_VERSION_PATCH 0 #define JANET_VERSION_PATCH 1
#define JANET_VERSION_EXTRA "" #define JANET_VERSION_EXTRA "-dev"
#define JANET_VERSION "1.15.0" #define JANET_VERSION "1.15.1-dev"
/* #define JANET_BUILD "local" */ /* #define JANET_BUILD "local" */

View File

@ -746,7 +746,7 @@ static const JanetReg io_cfuns[] = {
"* r - allow reading from the file\n\n" "* r - allow reading from the file\n\n"
"* w - allow writing to the file\n\n" "* w - allow writing to the file\n\n"
"* a - append to the file\n\n" "* a - append to the file\n\n"
"Following one fo the initial flags, 0 or more of the following flags can be appended:\n\n" "Following one of the initial flags, 0 or more of the following flags can be appended:\n\n"
"* b - open the file in binary mode (rather than text mode)\n\n" "* b - open the file in binary mode (rather than text mode)\n\n"
"* + - append to the file instead of overwriting it\n\n" "* + - append to the file instead of overwriting it\n\n"
"* n - error if the file cannot be opened instead of returning nil") "* n - error if the file cannot be opened instead of returning nil")