From 810ef7401cecb910deeb45f7b18975170eff4a35 Mon Sep 17 00:00:00 2001 From: Calvin Rose Date: Sat, 4 Apr 2020 21:50:27 -0500 Subject: [PATCH] Update changelog and bump version to dev version. --- CHANGELOG.md | 1 + Makefile | 2 +- meson.build | 2 +- src/conf/janetconf.h | 6 +++--- 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 804ea624..f50a5e79 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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` diff --git a/Makefile b/Makefile index 69d05be3..68367962 100644 --- a/Makefile +++ b/Makefile @@ -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 $< $@ diff --git a/meson.build b/meson.build index 23c7cd84..3633b9c3 100644 --- a/meson.build +++ b/meson.build @@ -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') diff --git a/src/conf/janetconf.h b/src/conf/janetconf.h index 4a2175ce..4f8a93fe 100644 --- a/src/conf/janetconf.h +++ b/src/conf/janetconf.h @@ -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" */