Skip to content

Commit 167ef86

Browse files
committed
Bump version number
1 parent 6b390d8 commit 167ef86

13 files changed

Lines changed: 6510 additions & 34324 deletions

File tree

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -312,8 +312,8 @@ nfibtest: bin/mhs bin/mhseval
312312

313313
######
314314

315-
VERSION=0.15.11.0
316-
HVERSION=0,15,11,0
315+
VERSION=0.15.12.0
316+
HVERSION=0,15,12,0
317317
MCABAL=$(HOME)/.mcabal
318318
MCABALMHS=$(MCABAL)/mhs-$(VERSION)
319319
MDATA=$(MCABALMHS)/packages/mhs-$(VERSION)/data

MicroHs.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 3.0
22
name: MicroHs
3-
version: 0.15.11.0
3+
version: 0.15.12.0
44
-- *** When changing the version number, also
55
-- *** run 'sh updateversion.sh'
66
-- *** Yeah, it stinks.

RELEASE-v0.16.0.0.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,4 @@
99
* Enable embedding packages in the mhs binary
1010
* Deriving for Read, Data, Functor, Foldable, Traversable
1111
* Simple Web app for playing with MicroHs
12+
* Non-blocking IO primitives

generated/base.pkg

1.86 KB
Binary file not shown.

generated/install.c

Lines changed: 1262 additions & 1262 deletions
Large diffs are not rendered by default.

generated/mhs.c

Lines changed: 5232 additions & 33050 deletions
Large diffs are not rendered by default.

generated/mhseval.js

2.44 KB
Binary file not shown.

lib/System/IO/FD.hs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
module System.IO.FD (waitForReadFD, waitForWriteFD) where
2-
32
import Primitives
3+
import Foreign.C.Error
44

5-
waitForReadFD :: Int -> IO Int
6-
waitForReadFD = primWaitReadFD
5+
waitForReadFD :: Int -> IO ()
6+
waitForReadFD = throwErrnoIfMinus1_ "waitForReadFD" . primWaitReadFD
77

8-
waitForWriteFD :: Int -> IO Int
9-
waitForWriteFD = primWaitWriteFD
8+
waitForWriteFD :: Int -> IO ()
9+
waitForWriteFD = throwErrnoIfMinus1_ "waitForWriteFD" . primWaitWriteFD

lib/System/Info.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ uname flag = unsafePerformIO $ do
2626
return $ map toLower $ filter (not . isSpace) res
2727

2828
fullCompilerVersion :: Version
29-
fullCompilerVersion = makeVersion [0,15,11,0]
29+
fullCompilerVersion = makeVersion [0,15,12,0]

lib/base.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 3.0
22
name: base
3-
version: 0.15.11.0
3+
version: 0.15.12.0
44
license: Apache-2.0
55
license-file: LICENSE
66
maintainer: lennart@augustsson.net

0 commit comments

Comments
 (0)