Skip to content

Commit 6932654

Browse files
committed
Update README and bump verion to 1.1.0
1 parent c927c07 commit 6932654

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,8 @@ ba.total_set
4848
```
4949

5050
## History
51-
- 1.0 in 2017 (updated for modern Ruby, more efficient storage, and 10th birthday)
51+
- 1.0.1 in 2018 (Changed bits order to be compliant with Redis' setbit/getbit and fixed initialize with custom field)
52+
- 1.0.0 in 2017 (updated for modern Ruby, more efficient storage, and 10th birthday)
5253
- 0.0.1 in 2012 (original v5 released on GitHub)
5354
- v5 (added support for flags being on by default, instead of off)
5455
- v4 (fixed bug where setting 0 bits to 0 caused a set to 1)

lib/bitarray.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ class BitArray
33
attr_reader :field
44
include Enumerable
55

6-
VERSION = "1.0.0"
6+
VERSION = "1.1.0"
77

88
def initialize(size, field = nil)
99
@size = size

0 commit comments

Comments
 (0)