caerbannog 0.6.0.2 → 0.6.0.3
raw patch · 3 files changed
+25/−6 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- CHANGELOG.markdown +5/−0
- README.markdown +4/−2
- caerbannog.cabal +16/−4
CHANGELOG.markdown view
@@ -1,5 +1,10 @@ # Change log +## 0.6.0.2++- Released on 2020-08-03.+- First `caerbannog` release on Hackage.+ ## 0.5 - Released on 2015-01-09.
README.markdown view
@@ -1,3 +1,5 @@-# caerbannog+# Caerbannog -Bit parsing/writing on top of `binary`.+Caerbannog is a fork of `binary-bits` that supports more recent versions of+GHC. Documentation is available on Hackage:+<https://hackage.haskell.org/package/caerbannog>.
caerbannog.cabal view
@@ -1,11 +1,23 @@ cabal-version: >= 1.10 name: caerbannog-version: 0.6.0.2-synopsis: Bit parsing/writing on top of binary.+version: 0.6.0.3+synopsis: That rabbit's got a vicious streak a mile wide! description:- Bit parsing/writing on top of binary. Provides functions to read and write- bits to and from 8\/16\/32\/64 words.+ Caerbannog is a drop in replacement for the @binary-bits@ package. Unlike+ @binary-bits@ Caerbannog works with GHC 8.10, 8.8, and 8.6.+ .+ The original package description of @binary-bits@ at version 0.5 was: "Bit+ parsing\/writing on top of binary. Provides functions to read and write bits+ to and from 8\/16\/32\/64 words."+ .+ Caerbannog allows you to do bit level gets and puts on top of the interface+ provided by the @binary@ package. This can be useful for parsing or+ generating binary formats that are not byte aligned.+ .+ There are many names for these types of actions: get and put, read and write,+ parse and generate, deserialize and serialize, decode and encode. Caerbannog+ doesn't care which word you use. It'll work anyway. author: Lennart Kolmodin build-type: Simple