Skip to content

Commit ffd3e30

Browse files
committed
Fix for GHC 7.10.1
1 parent 2c9c353 commit ffd3e30

File tree

5 files changed

+12
-2
lines changed

5 files changed

+12
-2
lines changed

AUTHORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ Contributors:
1313
Douglas Huff <https://github.com/jrmithdobbs>
1414
Bastian Holst <https://github.com/bholst>
1515
Dan Cecile <https://github.com/dcecile>
16+
Rohan Drape <[email protected]>
1617

1718
References:
1819
Write Yourself a Scheme in 48 Hours <http://en.wikibooks.org/wiki/Write_Yourself_a_Scheme_in_48_Hours>

ChangeLog.markdown

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
v3.19.1
2+
--------
3+
4+
Bug Fixes:
5+
6+
- Applied a fix from Rohan Drape to allow `Compiler` and `Numerical` modules to build in GHC 7.10.1.
7+
18
v3.19
29
--------
310

@@ -16,7 +23,7 @@ New Features:
1623
- Print the number of received arguments when displaying an "incorrect number of arguments" error message. Also unbox any objects before displaying the error message.
1724
- Allow `read-all` to read from `stdin` when no arguments are received.
1825

19-
Big Fixes:
26+
Bug Fixes:
2027

2128
- Fixed bugs in `open-input-string` and `open-byte-vector` that prevented a variable being passed as the "input" argument. Thanks to Dan Cecile for the bug report!
2229
- Fixed a bug that could cause an infinite loop during macro expansion. Thanks to Dan Cecile for this report as well.

hs-src/Language/Scheme/Compiler.hs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
{-# LANGUAGE FlexibleContexts #-}
12
{- |
23
Module : Language.Scheme.Compiler
34
Copyright : Justin Ethier

hs-src/Language/Scheme/Numerical.hs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
{-# LANGUAGE FlexibleContexts #-}
12
{- |
23
Module : Language.Scheme.Numerical
34
Copyright : Justin Ethier

husk-scheme.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Name: husk-scheme
2-
Version: 3.19
2+
Version: 3.19.1
33
Synopsis: R5RS Scheme interpreter, compiler, and library.
44
Description:
55
<<https://github.com/justinethier/husk-scheme/raw/master/docs/husk-scheme.png>>

0 commit comments

Comments
 (0)