aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorCalvin Rose <calsrose@gmail.com>2020-07-25 13:47:54 -0500
committerCalvin Rose <calsrose@gmail.com>2020-07-25 13:48:43 -0500
commit4cc680965cdc3c18d9d903766078f4ca79343c12 (patch)
treec429ce8e55e9050c1b5682fa393fbde90cf4b2d1
parentDisable PRF by default. (diff)
Prepare for 1.11.1 release.v1.11.1
-rw-r--r--CHANGELOG.md4
-rw-r--r--src/conf/janetconf.h4
-rw-r--r--test/suite4.janet2
3 files changed, 6 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 184e826b..ed5c83d3 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -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.
diff --git a/src/conf/janetconf.h b/src/conf/janetconf.h
index 0f97e9d8..9d22b384 100644
--- a/src/conf/janetconf.h
+++ b/src/conf/janetconf.h
@@ -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" */
diff --git a/test/suite4.janet b/test/suite4.janet
index 5a046f52..208f7cc4 100644
--- a/test/suite4.janet
+++ b/test/suite4.janet
@@ -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")