summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Ethier <justin.ethier@gmail.com>2014-02-25 17:52:17 -0500
committerJustin Ethier <justin.ethier@gmail.com>2014-02-25 17:52:17 -0500
commitff3b46996d92fa93fdcdd8ce5abbf64c443580c3 (patch)
tree61246f3d93aa77078f505616e24e2760f439a0c6
parent774ac18433f85255014ca9b8637a117699dffa9d (diff)
Update ChangeLog.markdownv3.16
-rw-r--r--ChangeLog.markdown19
1 files changed, 11 insertions, 8 deletions
diff --git a/ChangeLog.markdown b/ChangeLog.markdown
index 19cfa5e0..a5972343 100644
--- a/ChangeLog.markdown
+++ b/ChangeLog.markdown
@@ -6,12 +6,6 @@ v3.16
- Husk now detects cyclic dependencies and throws an error instead of going into an infinite loop.
- Each library is only evaluated once during the import process.
-- The `Port` data type has been extended to include an optional in-memory buffer:
-
- Port Handle (Maybe Knob)
-
- These changes are isolated in husk, but if your code uses any `Port` constructors, you would need to change them, EG: `Port _ Nothing`.
-
- `begin` now has the ability to evaluate contained expressions and definitions as if the enclosing `begin` were not present, per R<sup>7</sup>RS. For example:
huski> x
@@ -21,8 +15,6 @@ v3.16
huski> x
28
-- Added an `-i` command line option to `huski`. This option will start the interactive REPL after a file specified on the command line is executed, and has no effect if no file is specified.
-
- Added the following R<sup>7</sup>RS I/O functions:
- `get-output-bytevector`
@@ -34,6 +26,17 @@ v3.16
- `read-string`
- `write-string`
+- Added an `-i` command line option to `huski`. This option will start the interactive REPL after a file specified on the command line is executed, and has no effect if no file is specified.
+
+Haskell API:
+
+- The `Port` data type has been extended to include an optional in-memory buffer:
+
+ Port Handle (Maybe Knob)
+
+ These changes are isolated in husk, but if your code uses any `Port` constructors, you would need to change them, EG: `Port _ Nothing`.
+
+
v3.15.2
--------