mirror of
https://github.com/janet-lang/janet
synced 2025-04-26 12:43:11 +00:00
Prepare for 1.11.1 release.
This commit is contained in:
parent
ba08e487cb
commit
4cc680965c
@ -1,11 +1,13 @@
|
|||||||
# 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
|
## 1.11.1 - 2020-07-25
|
||||||
- Fix jpm and git with multiple git installs on Windows
|
- Fix jpm and git with multiple git installs on Windows
|
||||||
- Fix importing a .so file in the current directory
|
- Fix importing a .so file in the current directory
|
||||||
- Allow passing byte sequence types directly to typed-array constructors.
|
- Allow passing byte sequence types directly to typed-array constructors.
|
||||||
- Fix bug sending files between threads.
|
- Fix bug sending files between threads.
|
||||||
|
- Disable PRF by default.
|
||||||
|
- Update the soname.
|
||||||
|
|
||||||
## 1.11.0 - 2020-07-18
|
## 1.11.0 - 2020-07-18
|
||||||
- Add `forever` macro.
|
- Add `forever` macro.
|
||||||
|
@ -29,8 +29,8 @@
|
|||||||
#define JANET_VERSION_MAJOR 1
|
#define JANET_VERSION_MAJOR 1
|
||||||
#define JANET_VERSION_MINOR 11
|
#define JANET_VERSION_MINOR 11
|
||||||
#define JANET_VERSION_PATCH 1
|
#define JANET_VERSION_PATCH 1
|
||||||
#define JANET_VERSION_EXTRA "-dev"
|
#define JANET_VERSION_EXTRA ""
|
||||||
#define JANET_VERSION "1.11.1-dev"
|
#define JANET_VERSION "1.11.1"
|
||||||
|
|
||||||
/* #define JANET_BUILD "local" */
|
/* #define JANET_BUILD "local" */
|
||||||
|
|
||||||
|
@ -49,7 +49,7 @@
|
|||||||
"Run a marshaling test using the make-image and load-image functions."
|
"Run a marshaling test using the make-image and load-image functions."
|
||||||
[x msg]
|
[x msg]
|
||||||
(def im (make-image x))
|
(def im (make-image x))
|
||||||
(printf "\nimage-hash: %d" (-> im string hash))
|
# (printf "\nimage-hash: %d" (-> im string hash))
|
||||||
(assert-no-error msg (load-image im)))
|
(assert-no-error msg (load-image im)))
|
||||||
|
|
||||||
(check-image (fn [] (fn [] 1)) "marshal nested functions")
|
(check-image (fn [] (fn [] 1)) "marshal nested functions")
|
||||||
|
Loading…
x
Reference in New Issue
Block a user