Update changelog and bump version to dev version.

This commit is contained in:
Calvin Rose 2020-04-04 21:50:27 -05:00
parent ae70a03383
commit 810ef7401c
4 changed files with 6 additions and 5 deletions

View File

@ -2,6 +2,7 @@
All notable changes to this project will be documented in this file.
## Unreleased - ???
- Support UTF-8 escapes in strings via `\uXXXX` or `\UXXXXXXXX`.
- Add `math/erf`
- Add `math/erfc`
- Add `math/log1p`

View File

@ -148,7 +148,7 @@ build/janet.c: build/janet_boot src/boot/boot.janet
##### Amalgamation #####
########################
SONAME=libjanet.so.1.8
SONAME=libjanet.so.1.9
build/shell.c: src/mainclient/shell.c
cp $< $@

View File

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

View File

@ -27,10 +27,10 @@
#define JANETCONF_H
#define JANET_VERSION_MAJOR 1
#define JANET_VERSION_MINOR 8
#define JANET_VERSION_PATCH 1
#define JANET_VERSION_MINOR 9
#define JANET_VERSION_PATCH 0
#define JANET_VERSION_EXTRA ""
#define JANET_VERSION "1.8.1"
#define JANET_VERSION "1.9.0-dev"
/* #define JANET_BUILD "local" */