Skip to content
This repository was archived by the owner on Sep 20, 2023. It is now read-only.

Commit 39985b9

Browse files
committed
release basement 0.15 and foundation 0.29
1 parent 7abf0e1 commit 39985b9

File tree

3 files changed

+33
-5
lines changed

3 files changed

+33
-5
lines changed

CHANGELOG.md

+28
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,31 @@
1+
## 0.0.29
2+
3+
* Add support for ghc 9.4
4+
* Drop support for ghc < 8.10
5+
* Remove all warnings (TypeOperators, Non canonical instances, Star type, spurious imports)
6+
7+
## 0.0.28
8+
9+
* Add support for ghc 9.2
10+
* Drop support for ghc < 8.8
11+
* Fix segfault bug introduce in 0.0.27 for ghc < 9.2 when converting word32 to word8 in some not too used code
12+
13+
## 0.0.27
14+
15+
* Add some primitive support for ghc 9.2
16+
* Simplify code to use base code instead of raw primops which are completely unstable
17+
18+
## 0.0.26
19+
20+
* add support for ghc 9.0
21+
* Add instance of Additive for Rational
22+
23+
## 0.0.25
24+
25+
* Add support for ghc 8.8
26+
* Improve IPv4 type parser
27+
* Disable ghcjs as its not supported
28+
129
## 0.0.24
230

331
* Fix fail instances

basement/basement.cabal

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: basement
2-
version: 0.0.14
2+
version: 0.0.15
33
synopsis: Foundation scrap box of array & string
44
description: Foundation most basic primitives without any dependencies
55
license: BSD3
@@ -137,7 +137,7 @@ library
137137
Basement.Terminal.Size
138138

139139
-- support and dependencies
140-
if impl(ghc < 8.8)
140+
if impl(ghc < 8.10)
141141
buildable: False
142142
else
143143
build-depends: base

foundation/foundation.cabal

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: foundation
2-
version: 0.0.28
2+
version: 0.0.29
33
synopsis: Alternative prelude with batteries and no dependencies
44
description:
55
A custom prelude with no dependencies apart from base.
@@ -196,7 +196,7 @@ library
196196
BangPatterns
197197
DeriveDataTypeable
198198

199-
if impl(ghc < 8.8) || impl(ghcjs)
199+
if impl(ghc < 8.10) || impl(ghcjs)
200200
buildable: False
201201
else
202202
build-depends: base
@@ -206,7 +206,7 @@ library
206206
if arch(i386)
207207
extra-libraries: gcc
208208

209-
build-depends: basement == 0.0.14
209+
build-depends: basement == 0.0.15
210210

211211
-- FIXME add suport for armel mipsel
212212
-- CPP-options: -DARCH_IS_LITTLE_ENDIAN

0 commit comments

Comments
 (0)