shithub: MicroHs

Download patch

ref: 521755ac000443c953d48ed1d48de385f5f5f97a
parent: 8a9c333f2ebefdce03f17c8d16fa63423580e830
author: Lennart Augustsson <lennart.augustsson@epicgames.com>
date: Thu Sep 12 05:50:26 EDT 2024

Bump version

--- a/Makefile
+++ b/Makefile
@@ -190,8 +190,8 @@
 
 ######
 
-VERSION=0.9.17.0
-HVERSION=0,9,17,0
+VERSION=0.9.18.0
+HVERSION=0,9,18,0
 MCABAL=$(HOME)/.mcabal
 MCABALMHS=$(MCABAL)/mhs-$(VERSION)
 MDATA=$(MCABALMHS)/data/mhs-$(VERSION)/data
--- a/MicroHs.cabal
+++ b/MicroHs.cabal
@@ -1,10 +1,10 @@
 cabal-version:       3.0
 name:                MicroHs
-version:             0.9.17.0
+version:             0.9.18.0
                      -- *** When changing the version number, also
                      -- *** run updateversion.sh.
                      -- *** Yeah, it stinks.
-synopsis:            A compiler for Haskell
+synopsis:            A small compiler for Haskell
 license:             Apache-2.0
 license-file:        LICENSE
 copyright:           2023,2024 Lennart Augustsson
@@ -109,6 +109,7 @@
                        process      >= 1.6 && < 1.8,
                        directory    >= 1.2 && < 1.5,
                        text         >= 2.0 && < 2.3,
---  if impl(mhs)
---    hs-source-dirs:    mhs src
---    build-depends:     base
+--
+--MHS  if impl(mhs)
+--MHS    hs-source-dirs:    mhs src
+--MHS    build-depends:     base         >= 0.1 && < 10.0,
--- a/paths/Paths_MicroHs.hs
+++ b/paths/Paths_MicroHs.hs
@@ -9,4 +9,4 @@
 getDataDir = return "."
 
 version :: Version
-version = makeVersion [0,9,17,0]
+version = makeVersion [0,9,18,0]
--