Skip to content

Commit aa9240b

Browse files
committed
Update to version 1.1
1 parent 902eb1e commit aa9240b

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

README.md

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

5050
## History
51+
- 1.1 in 2018 (fixed a significant bug)
5152
- 1.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)
@@ -60,6 +61,8 @@ ba.total_set
6061

6162
Thanks to Michael Slade for encouraging me to update this library on its 10th birthday and for suggesting finally using String's getbyte and setbyte methods now that we're all on 1.9+ compatible implementations.
6263

64+
Further thanks to @tdeo, @JoshuaSP, and @m1lt0n for pull requests.
65+
6366
## License
6467

65-
MIT licensed. Copyright 2007-2017 Peter Cooper.
68+
MIT licensed. Copyright 2007-2018 Peter Cooper.

lib/bitarray-array.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
ELEMENT_WIDTH = 32
88

99
def initialize(size, field = nil)

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)