Skip to content

Commit

Permalink
Updating for next release
Browse files Browse the repository at this point in the history
  • Loading branch information
recursion-ninja committed Jul 21, 2019
1 parent f1706a1 commit a9c4a1e
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bv-little.cabal
@@ -1,5 +1,5 @@
name: bv-little
version: 1.0.1
version: 1.1.0
synopsis: Efficient little-endian bit vector library
category: Data, Bit Vectors
license: BSD3
Expand Down
6 changes: 6 additions & 0 deletions changelog.md
Expand Up @@ -2,6 +2,11 @@

* None

### [v1.1.0][5]

* Added `rank` and `select` functions


### [v1.0.1][4]

* Correcting Eq instance to test for value equality and not construction equality
Expand Down Expand Up @@ -72,3 +77,4 @@
[2]: https://github.com/recursion-ninja/bv-little/tree/v0.1.2
[3]: https://github.com/recursion-ninja/bv-little/tree/v1.0.0
[4]: https://github.com/recursion-ninja/bv-little/tree/v1.0.1
[5]: https://github.com/recursion-ninja/bv-little/tree/v1.1.0
4 changes: 3 additions & 1 deletion src/Data/BitVector/LittleEndian.hs
Expand Up @@ -42,7 +42,9 @@
-- convert the 'BitVector' using either 'toSignedNumber' or 'toUnsignedNumber'.
--
-- This module defines 'rank' and 'select' operations for 'BitVector' as a
-- succinct data structure.
-- succinct data structure. These operations are not /o(1)/ so 'BitVector' is
-- not a true/ succinct data structure. However, it could potentially be extend
-- to support this in the future.
-----------------------------------------------------------------------------

{-# LANGUAGE BangPatterns #-}
Expand Down

0 comments on commit a9c4a1e

Please sign in to comment.