Browse Source

Version bump and changelog update for 0.1.4

Getty Ritter 6 years ago
parent
commit
ded0edba15
2 changed files with 21 additions and 1 deletions
  1. 16 0
      CHANGELOG.md
  2. 5 1
      s-cargot.cabal

+ 16 - 0
CHANGELOG.md

@@ -1,3 +1,19 @@
+v0.1.4.0
+=======
+
+Features:
+
+* Added `encodeLazy` and `encodeOneLazy` functions to producing lazy
+  text
+
+Fixes:
+
+* Added the `Located` type for source location tracking for `atom`
+  values (thanks ckoparkar!)
+* Added `unconstrainedPrint`, which does not try to restrict a printed
+  s-expression to a fixed width but will attempt to indent it in a
+  reasonable way nonetheless.
+
 v0.1.3.0
 =======
 

+ 5 - 1
s-cargot.cabal

@@ -1,5 +1,5 @@
 name:                s-cargot
-version:             0.1.3.0
+version:             0.1.4.0
 synopsis:            A flexible, extensible s-expression library.
 homepage:            https://github.com/aisamanra/s-cargot
 description:         S-Cargot is a library for working with s-expressions in
@@ -29,6 +29,7 @@ flag build-example
   description: Build example application
   default:     False
 
+
 library
   exposed-modules:     Data.SCargot,
                        Data.SCargot.Repr,
@@ -50,6 +51,7 @@ library
   default-extensions:  CPP
   ghc-options:         -Wall
 
+
 executable example
   if !flag(build-example)
     buildable:         False
@@ -63,6 +65,7 @@ executable example
   default-language:    Haskell2010
   ghc-options:         -threaded -rtsopts -with-rtsopts=-N
 
+
 test-suite s-cargot-qc
   default-language: Haskell2010
   type:             exitcode-stdio-1.0
@@ -74,6 +77,7 @@ test-suite s-cargot-qc
                     QuickCheck    >=2.8 && <3,
                     text          >=1.2 && <2
 
+
 test-suite s-cargot-printparse
   default-language: Haskell2010
   type:             exitcode-stdio-1.0