1
0
mirror of https://github.com/janet-lang/janet synced 2025-02-03 10:49:09 +00:00

Prepare for 1.11.1 release.

This commit is contained in:
Calvin Rose 2020-07-25 13:47:54 -05:00
parent ba08e487cb
commit 4cc680965c
3 changed files with 6 additions and 4 deletions

View File

@ -1,11 +1,13 @@
# Changelog
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 importing a .so file in the current directory
- Allow passing byte sequence types directly to typed-array constructors.
- Fix bug sending files between threads.
- Disable PRF by default.
- Update the soname.
## 1.11.0 - 2020-07-18
- Add `forever` macro.

View File

@ -29,8 +29,8 @@
#define JANET_VERSION_MAJOR 1
#define JANET_VERSION_MINOR 11
#define JANET_VERSION_PATCH 1
#define JANET_VERSION_EXTRA "-dev"
#define JANET_VERSION "1.11.1-dev"
#define JANET_VERSION_EXTRA ""
#define JANET_VERSION "1.11.1"
/* #define JANET_BUILD "local" */

View File

@ -49,7 +49,7 @@
"Run a marshaling test using the make-image and load-image functions."
[x msg]
(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)))
(check-image (fn [] (fn [] 1)) "marshal nested functions")