Release 0.1.2.3
This commit is contained in:
parent
0cad5ec449
commit
52c4a1e7f6
2 changed files with 9 additions and 5 deletions
|
@ -1,5 +1,9 @@
|
||||||
# Revision history for SJW
|
# Revision history for SJW
|
||||||
|
|
||||||
|
## 0.1.2.3 -- 2021-01-20
|
||||||
|
|
||||||
|
* Ensure compilation on Nix as far as 18.09
|
||||||
|
|
||||||
## 0.1.2.2 -- 2020-12-08
|
## 0.1.2.2 -- 2020-12-08
|
||||||
|
|
||||||
* Add tests and a benchmark
|
* Add tests and a benchmark
|
||||||
|
|
10
SJW.cabal
10
SJW.cabal
|
@ -3,7 +3,7 @@ cabal-version: >=1.10
|
||||||
-- further documentation, see http://haskell.org/cabal/users-guide/
|
-- further documentation, see http://haskell.org/cabal/users-guide/
|
||||||
|
|
||||||
name: SJW
|
name: SJW
|
||||||
version: 0.1.2.2
|
version: 0.1.2.3
|
||||||
synopsis: The Simple Javascript Wrench
|
synopsis: The Simple Javascript Wrench
|
||||||
description:
|
description:
|
||||||
SJW is a very simple tool to pack several JS «modules» into a single script.
|
SJW is a very simple tool to pack several JS «modules» into a single script.
|
||||||
|
@ -31,13 +31,13 @@ library
|
||||||
, SJW.Source
|
, SJW.Source
|
||||||
build-depends: attoparsec >= 0.13.2 && < 0.14
|
build-depends: attoparsec >= 0.13.2 && < 0.14
|
||||||
, base >=4.9 && <4.15
|
, base >=4.9 && <4.15
|
||||||
, containers >= 0.6.0 && < 0.7
|
, containers >= 0.5.0 && < 0.7
|
||||||
, directory >= 1.3.3 && < 1.4
|
, directory >= 1.2.0 && < 1.4
|
||||||
, filepath >= 1.4.2 && < 1.5
|
, filepath >= 1.4.2 && < 1.5
|
||||||
, mtl >= 2.2.2 && < 2.3
|
, mtl >= 2.2.2 && < 2.3
|
||||||
, random >= 1.1 && < 1.3
|
, random >= 1.1 && < 1.3
|
||||||
, text >= 1.2.3 && < 1.3
|
, text >= 1.2.3 && < 1.3
|
||||||
, time >= 1.9.0 && < 1.12
|
, time >= 1.8.0 && < 1.12
|
||||||
, unix >= 2.7.2 && < 2.8
|
, unix >= 2.7.2 && < 2.8
|
||||||
hs-source-dirs: src
|
hs-source-dirs: src
|
||||||
default-language: Haskell2010
|
default-language: Haskell2010
|
||||||
|
@ -49,7 +49,7 @@ executable sjw
|
||||||
-- other-extensions:
|
-- other-extensions:
|
||||||
build-depends: attoparsec
|
build-depends: attoparsec
|
||||||
, base
|
, base
|
||||||
, optparse-applicative >= 0.15 && < 0.17
|
, optparse-applicative >= 0.14 && < 0.17
|
||||||
, SJW
|
, SJW
|
||||||
, text
|
, text
|
||||||
default-language: Haskell2010
|
default-language: Haskell2010
|
||||||
|
|
Loading…
Reference in a new issue