1
0
mirror of https://github.com/janet-lang/janet synced 2024-11-24 09:17:17 +00:00

Update for 1.10.0.

This commit is contained in:
Calvin Rose 2020-06-14 12:15:56 -05:00
parent 911c2cbe58
commit 19f3568e18
4 changed files with 3 additions and 2 deletions

0
.gitattributes vendored
View File

View File

@ -2,6 +2,7 @@
All notable changes to this project will be documented in this file.
## 1.10.1 - 2020-06-14
- Add `:no-compile` to `create-executable` option for jpm.
- Fix bug with the `trace` function.
- Add `:h`, `:a`, and `:c` flags to `thread/new` for creating new kinds of threads.
By default, threads will now consume much less memory per thread, but sending data between

View File

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

View File

@ -29,7 +29,7 @@
#define JANET_VERSION_MAJOR 1
#define JANET_VERSION_MINOR 10
#define JANET_VERSION_PATCH 0
#define JANET_VERSION_EXTRA "-dev"
#define JANET_VERSION_EXTRA ""
#define JANET_VERSION "1.10.0"
/* #define JANET_BUILD "local" */