Skip to content

Commit

Permalink
Releasing v1
Browse files Browse the repository at this point in the history
  • Loading branch information
martinvlk committed Jun 7, 2016
1 parent 02fde77 commit ee0b687
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,15 @@ Rison gets parsed into and serialized from Aeson [Value](http://hackage.haskell.

Implementation partly inspired by [Aeson](https://github.com/bos/aeson).

##Example

```
{-# LANGUAGE OverloadedStrings #-}
import Data.Rison
example :: Bool
example = let inputString = "(property:!(val1,val2,val3))"
aesonValue = decode inputString
outputString = encode aesonValue
in inputString == outputString
```
6 changes: 3 additions & 3 deletions rison.cabal
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: rison
version: 0.1.0.0
synopsis: Support for parsing and rendering RISON strings.
description: Please see README.md
version: 1.0.0.0
synopsis: Parses and renders RISON strings.
description: Rison gets parsed into and serialized from Aeson Valueobjects. Please see README.md for details.
homepage: https://github.com/martinvlk/rison-hs#readme
license: BSD3
license-file: LICENSE
Expand Down

0 comments on commit ee0b687

Please sign in to comment.