Skip to content

Commit

Permalink
release basement 0.15 and foundation 0.29
Browse files Browse the repository at this point in the history
  • Loading branch information
vincenthz committed Aug 19, 2022
1 parent 7abf0e1 commit 39985b9
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 5 deletions.
28 changes: 28 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,31 @@
## 0.0.29

* Add support for ghc 9.4
* Drop support for ghc < 8.10
* Remove all warnings (TypeOperators, Non canonical instances, Star type, spurious imports)

## 0.0.28

* Add support for ghc 9.2
* Drop support for ghc < 8.8
* Fix segfault bug introduce in 0.0.27 for ghc < 9.2 when converting word32 to word8 in some not too used code

## 0.0.27

* Add some primitive support for ghc 9.2
* Simplify code to use base code instead of raw primops which are completely unstable

## 0.0.26

* add support for ghc 9.0
* Add instance of Additive for Rational

## 0.0.25

* Add support for ghc 8.8
* Improve IPv4 type parser
* Disable ghcjs as its not supported

## 0.0.24

* Fix fail instances
Expand Down
4 changes: 2 additions & 2 deletions basement/basement.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: basement
version: 0.0.14
version: 0.0.15
synopsis: Foundation scrap box of array & string
description: Foundation most basic primitives without any dependencies
license: BSD3
Expand Down Expand Up @@ -137,7 +137,7 @@ library
Basement.Terminal.Size

-- support and dependencies
if impl(ghc < 8.8)
if impl(ghc < 8.10)
buildable: False
else
build-depends: base
Expand Down
6 changes: 3 additions & 3 deletions foundation/foundation.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: foundation
version: 0.0.28
version: 0.0.29
synopsis: Alternative prelude with batteries and no dependencies
description:
A custom prelude with no dependencies apart from base.
Expand Down Expand Up @@ -196,7 +196,7 @@ library
BangPatterns
DeriveDataTypeable

if impl(ghc < 8.8) || impl(ghcjs)
if impl(ghc < 8.10) || impl(ghcjs)
buildable: False
else
build-depends: base
Expand All @@ -206,7 +206,7 @@ library
if arch(i386)
extra-libraries: gcc

build-depends: basement == 0.0.14
build-depends: basement == 0.0.15

-- FIXME add suport for armel mipsel
-- CPP-options: -DARCH_IS_LITTLE_ENDIAN
Expand Down

0 comments on commit 39985b9

Please sign in to comment.