Skip to content

Commit 0c7de3e

Browse files
committed
Bump version to 2.0.0
1 parent 6932654 commit 0c7de3e

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Gemfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
bitarray (1.0.0)
4+
bitarray (2.0.0)
55

66
GEM
77
remote: https://rubygems.org/
@@ -18,4 +18,4 @@ DEPENDENCIES
1818
rake
1919

2020
BUNDLED WITH
21-
1.13.7
21+
1.16.3

README.md

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

5050
## History
51-
- 1.0.1 in 2018 (Changed bits order to be compliant with Redis' setbit/getbit and fixed initialize with custom field)
51+
- 2.0.0 in 2018 (Changed bits order to be compliant with Redis' setbit/getbit and fixed initialize with custom field)
5252
- 1.0.0 in 2017 (updated for modern Ruby, more efficient storage, and 10th birthday)
5353
- 0.0.1 in 2012 (original v5 released on GitHub)
5454
- v5 (added support for flags being on by default, instead of off)

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.1.0"
6+
VERSION = "2.0.0"
77

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

0 commit comments

Comments
 (0)