File tree 3 files changed +6
-4
lines changed 3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
All notable changes to this project will be documented in this file.
3
3
4
- ## ??? - Unreleased
4
+ ## 1.11.1 - 2020-07-25
5
5
- Fix jpm and git with multiple git installs on Windows
6
6
- Fix importing a .so file in the current directory
7
7
- Allow passing byte sequence types directly to typed-array constructors.
8
8
- Fix bug sending files between threads.
9
+ - Disable PRF by default.
10
+ - Update the soname.
9
11
10
12
## 1.11.0 - 2020-07-18
11
13
- Add ` forever ` macro.
Original file line number Diff line number Diff line change 29
29
#define JANET_VERSION_MAJOR 1
30
30
#define JANET_VERSION_MINOR 11
31
31
#define JANET_VERSION_PATCH 1
32
- #define JANET_VERSION_EXTRA "-dev "
33
- #define JANET_VERSION "1.11.1-dev "
32
+ #define JANET_VERSION_EXTRA ""
33
+ #define JANET_VERSION "1.11.1"
34
34
35
35
/* #define JANET_BUILD "local" */
36
36
Original file line number Diff line number Diff line change 49
49
" Run a marshaling test using the make-image and load-image functions."
50
50
[x msg ]
51
51
(def im (make-image x ))
52
- (printf " \n image-hash: %d" (-> im string hash ))
52
+ # (printf "\nimage-hash: %d" (-> im string hash))
53
53
(assert-no-error msg (load-image im )))
54
54
55
55
(check-image (fn [] (fn [] 1 )) " marshal nested functions" )
You can’t perform that action at this time.
0 commit comments