Version bump and changelog update for 0.1.4
Getty Ritter
6 years ago
| 1 |
v0.1.4.0
|
| 2 |
=======
|
| 3 |
|
| 4 |
Features:
|
| 5 |
|
| 6 |
* Added `encodeLazy` and `encodeOneLazy` functions to producing lazy
|
| 7 |
text
|
| 8 |
|
| 9 |
Fixes:
|
| 10 |
|
| 11 |
* Added the `Located` type for source location tracking for `atom`
|
| 12 |
values (thanks ckoparkar!)
|
| 13 |
* Added `unconstrainedPrint`, which does not try to restrict a printed
|
| 14 |
s-expression to a fixed width but will attempt to indent it in a
|
| 15 |
reasonable way nonetheless.
|
| 16 |
|
1 | 17 |
v0.1.3.0
|
2 | 18 |
=======
|
3 | 19 |
|
1 | 1 |
name: s-cargot
|
2 | |
version: 0.1.3.0
|
| 2 |
version: 0.1.4.0
|
3 | 3 |
synopsis: A flexible, extensible s-expression library.
|
4 | 4 |
homepage: https://github.com/aisamanra/s-cargot
|
5 | 5 |
description: S-Cargot is a library for working with s-expressions in
|
|
29 | 29 |
description: Build example application
|
30 | 30 |
default: False
|
31 | 31 |
|
| 32 |
|
32 | 33 |
library
|
33 | 34 |
exposed-modules: Data.SCargot,
|
34 | 35 |
Data.SCargot.Repr,
|
|
50 | 51 |
default-extensions: CPP
|
51 | 52 |
ghc-options: -Wall
|
52 | 53 |
|
| 54 |
|
53 | 55 |
executable example
|
54 | 56 |
if !flag(build-example)
|
55 | 57 |
buildable: False
|
|
63 | 65 |
default-language: Haskell2010
|
64 | 66 |
ghc-options: -threaded -rtsopts -with-rtsopts=-N
|
65 | 67 |
|
| 68 |
|
66 | 69 |
test-suite s-cargot-qc
|
67 | 70 |
default-language: Haskell2010
|
68 | 71 |
type: exitcode-stdio-1.0
|
|
74 | 77 |
QuickCheck >=2.8 && <3,
|
75 | 78 |
text >=1.2 && <2
|
76 | 79 |
|
| 80 |
|
77 | 81 |
test-suite s-cargot-printparse
|
78 | 82 |
default-language: Haskell2010
|
79 | 83 |
type: exitcode-stdio-1.0
|