Skip to content

Commit

Permalink
Bump to 0.2.1.1; CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
andreasabel committed May 11, 2022
1 parent 6a2e7bb commit 603d8a2
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 16 deletions.
7 changes: 7 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
See also http://pvp.haskell.org/faq

### 0.2.1.1

_2022-05-11_

* Compatibility with `mtl-2.3`
* Tested with GHC 7.4 - 9.2

### 0.2.1.0

* Define `Functor Doc` instance ([#33](https://github.com/haskell-hvr/HsYAML/issues/33))
Expand Down
31 changes: 15 additions & 16 deletions HsYAML.cabal
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
cabal-version: 1.14
name: HsYAML
version: 0.2.1.0
x-revision: 4
version: 0.2.1.1

synopsis: Pure Haskell YAML 1.2 processor
homepage: https://github.com/hvr/HsYAML
bug-reports: https://github.com/hvr/HsYAML/issues
homepage: https://github.com/haskell-hvr/HsYAML
bug-reports: https://github.com/haskell-hvr/HsYAML/issues
license: GPL-2
X-SPDX-License-Identifier: GPL-2.0-or-later
license-files: LICENSE.GPLv2 LICENSE.GPLv3
author: Herbert Valerio Riedel
maintainer: [email protected]
maintainer: https://github.com/haskell-hvr/HsYAML
copyright: 2015-2018 Herbert Valerio Riedel
, 2007-2008 Oren Ben-Kiki
category: Text
Expand Down Expand Up @@ -51,7 +50,7 @@ extra-source-files:

source-repository head
type: git
location: https://github.com/hvr/HsYAML.git
location: https://github.com/haskell-hvr/HsYAML.git

flag exe
description: Enable @exe:yaml-test@ component
Expand Down Expand Up @@ -90,24 +89,24 @@ library
Trustworthy
TypeSynonymInstances

build-depends: base >=4.5 && <4.17
, bytestring >=0.9 && <0.12
, containers >=0.4.2 && <0.7
, deepseq >=1.3.0 && <1.5
, text >=1.2.3 && <2.1
, mtl >=2.2.1 && <2.4
, parsec >=3.1.13.0 && < 3.2
, transformers >=0.4 && <0.7
build-depends: base >= 4.5 && < 4.17
, bytestring >= 0.9 && < 0.12
, containers >= 0.4.2 && < 0.7
, deepseq >= 1.3.0 && < 1.5
, text >= 1.2.3 && < 2.1
, mtl >= 2.2.1 && < 2.4
, parsec >= 3.1.13.0 && < 3.2
, transformers >= 0.4 && < 0.7

-- for GHC.Generics
if impl(ghc < 7.6)
build-depends: ghc-prim

if !impl(ghc >= 8.0)
build-depends: fail >=4.9.0.0 && <4.10
build-depends: fail >= 4.9.0.0 && < 4.10

if !impl(ghc >= 7.10)
build-depends: nats >=1.1.2 && <1.2
build-depends: nats >= 1.1.2 && < 1.2

ghc-options: -Wall

Expand Down

0 comments on commit 603d8a2

Please sign in to comment.