dataenc 0.11 → 0.11.1
raw patch · 9 files changed
+25/−1 lines, 9 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- dataenc.cabal +2/−1
- src/Codec/Binary/Base16.hs +3/−0
- src/Codec/Binary/Base32.hs +3/−0
- src/Codec/Binary/Base32Hex.hs +3/−0
- src/Codec/Binary/Base64.hs +3/−0
- src/Codec/Binary/Base64Url.hs +3/−0
- src/Codec/Binary/Base85.hs +3/−0
- src/Codec/Binary/DataEncoding.hs +2/−0
- src/Codec/Binary/Uu.hs +3/−0
dataenc.cabal view
@@ -1,11 +1,12 @@ name: dataenc-version: 0.11+version: 0.11.1 license: LGPL license-file: COPYING.LESSER cabal-version: >= 1.2 build-type: Simple author: Magnus Therning maintainer: magnus@therning.org+homepage: http://www.haskell.org/haskellwiki/Library/Data_encoding copyright: Magnus Therning, 2007 category: Codec synopsis: Data encoding library
src/Codec/Binary/Base16.hs view
@@ -20,6 +20,9 @@ -- -- Implemented as specified in RFC 4648 -- (<http://tools.ietf.org/html/rfc4648>).+--+-- Further documentation and information can be found at+-- <http://www.haskell.org/haskellwiki/Library/Data_encoding>. module Codec.Binary.Base16 ( encode , decode
src/Codec/Binary/Base32.hs view
@@ -20,6 +20,9 @@ -- -- Implemented as specified in RFC 4648 -- (<http://tools.ietf.org/html/rfc4648>).+--+-- Further documentation and information can be found at+-- <http://www.haskell.org/haskellwiki/Library/Data_encoding>. module Codec.Binary.Base32 ( encode , decode
src/Codec/Binary/Base32Hex.hs view
@@ -20,6 +20,9 @@ -- -- Implemented as specified in RFC 4648 -- (<http://tools.ietf.org/html/rfc4648>).+--+-- Further documentation and information can be found at+-- <http://www.haskell.org/haskellwiki/Library/Data_encoding>. module Codec.Binary.Base32Hex ( encode , decode
src/Codec/Binary/Base64.hs view
@@ -20,6 +20,9 @@ -- -- Implemented as specified in RFC 4648 -- (<http://tools.ietf.org/html/rfc4648>).+--+-- Further documentation and information can be found at+-- <http://www.haskell.org/haskellwiki/Library/Data_encoding>. module Codec.Binary.Base64 ( encode , decode
src/Codec/Binary/Base64Url.hs view
@@ -20,6 +20,9 @@ -- -- Implemented as specified in RFC 4648 -- (<http://tools.ietf.org/html/rfc4648>).+--+-- Further documentation and information can be found at+-- <http://www.haskell.org/haskellwiki/Library/Data_encoding>. module Codec.Binary.Base64Url ( encode , decode
src/Codec/Binary/Base85.hs view
@@ -19,6 +19,9 @@ -- | Base85 module. -- -- Implemented as described at <http://en.wikipedia.org/wiki/Ascii85>.+--+-- Further documentation and information can be found at+-- <http://www.haskell.org/haskellwiki/Library/Data_encoding>. module Codec.Binary.Base85 ( encode , decode
src/Codec/Binary/DataEncoding.hs view
@@ -22,6 +22,8 @@ -- implemented in the library without causing the name clashing that would -- result from importing the individual encoding modules. --+-- Further documentation and information can be found at+-- <http://www.haskell.org/haskellwiki/Library/Data_encoding>. module Codec.Binary.DataEncoding ( DataCodec , encode
src/Codec/Binary/Uu.hs view
@@ -21,6 +21,9 @@ -- Uuencoding is notoriously badly specified. This implementation is -- compatible with the GNU Sharutils -- (<http://www.gnu.org/software/sharutils/>).+--+-- Further documentation and information can be found at+-- <http://www.haskell.org/haskellwiki/Library/Data_encoding>. module Codec.Binary.Uu ( encode , decode