mirror of
https://github.com/janet-lang/janet
synced 2025-11-07 19:13:02 +00:00
Update changelog and bump version to dev version.
This commit is contained in:
@@ -2,6 +2,7 @@
|
|||||||
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 - ???
|
## Unreleased - ???
|
||||||
|
- Support UTF-8 escapes in strings via `\uXXXX` or `\UXXXXXXXX`.
|
||||||
- Add `math/erf`
|
- Add `math/erf`
|
||||||
- Add `math/erfc`
|
- Add `math/erfc`
|
||||||
- Add `math/log1p`
|
- Add `math/log1p`
|
||||||
|
|||||||
2
Makefile
2
Makefile
@@ -148,7 +148,7 @@ build/janet.c: build/janet_boot src/boot/boot.janet
|
|||||||
##### Amalgamation #####
|
##### Amalgamation #####
|
||||||
########################
|
########################
|
||||||
|
|
||||||
SONAME=libjanet.so.1.8
|
SONAME=libjanet.so.1.9
|
||||||
|
|
||||||
build/shell.c: src/mainclient/shell.c
|
build/shell.c: src/mainclient/shell.c
|
||||||
cp $< $@
|
cp $< $@
|
||||||
|
|||||||
@@ -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.8.1')
|
version : '1.9.0-dev')
|
||||||
|
|
||||||
# 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')
|
||||||
|
|||||||
@@ -27,10 +27,10 @@
|
|||||||
#define JANETCONF_H
|
#define JANETCONF_H
|
||||||
|
|
||||||
#define JANET_VERSION_MAJOR 1
|
#define JANET_VERSION_MAJOR 1
|
||||||
#define JANET_VERSION_MINOR 8
|
#define JANET_VERSION_MINOR 9
|
||||||
#define JANET_VERSION_PATCH 1
|
#define JANET_VERSION_PATCH 0
|
||||||
#define JANET_VERSION_EXTRA ""
|
#define JANET_VERSION_EXTRA ""
|
||||||
#define JANET_VERSION "1.8.1"
|
#define JANET_VERSION "1.9.0-dev"
|
||||||
|
|
||||||
/* #define JANET_BUILD "local" */
|
/* #define JANET_BUILD "local" */
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user