Skip to content

Commit 4cc6809

Browse files
committed
Prepare for 1.11.1 release.
1 parent ba08e48 commit 4cc6809

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
# Changelog
22
All notable changes to this project will be documented in this file.
33

4-
## ??? - Unreleased
4+
## 1.11.1 - 2020-07-25
55
- Fix jpm and git with multiple git installs on Windows
66
- Fix importing a .so file in the current directory
77
- Allow passing byte sequence types directly to typed-array constructors.
88
- Fix bug sending files between threads.
9+
- Disable PRF by default.
10+
- Update the soname.
911

1012
## 1.11.0 - 2020-07-18
1113
- Add `forever` macro.

src/conf/janetconf.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@
2929
#define JANET_VERSION_MAJOR 1
3030
#define JANET_VERSION_MINOR 11
3131
#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"
3434

3535
/* #define JANET_BUILD "local" */
3636

test/suite4.janet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
"Run a marshaling test using the make-image and load-image functions."
5050
[x msg]
5151
(def im (make-image x))
52-
(printf "\nimage-hash: %d" (-> im string hash))
52+
# (printf "\nimage-hash: %d" (-> im string hash))
5353
(assert-no-error msg (load-image im)))
5454

5555
(check-image (fn [] (fn [] 1)) "marshal nested functions")

0 commit comments

Comments
 (0)