Skip to content

Commit 7ebde83

Browse files
committed
v1.2.0
1 parent 01e3304 commit 7ebde83

File tree

3 files changed

+19
-12
lines changed

3 files changed

+19
-12
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## v1.2.0
2+
3+
- Features:
4+
- `money` filter now allows negative numbers.
5+
16
## v1.1.1
27

38
- Fixes:

Gemfile.lock

+13-11
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
normalizy (1.1.1)
4+
normalizy (1.2.0)
55
activerecord (>= 4.1, < 6)
66

77
GEM
@@ -42,26 +42,27 @@ GEM
4242
erubi (1.7.1)
4343
i18n (1.0.1)
4444
concurrent-ruby (~> 1.0)
45+
jaro_winkler (1.5.1)
4546
loofah (2.2.2)
4647
crass (~> 1.0.2)
4748
nokogiri (>= 1.5.9)
4849
method_source (0.9.0)
4950
mini_portile2 (2.3.0)
5051
minitest (5.11.3)
51-
nokogiri (1.8.2)
52+
nokogiri (1.8.4)
5253
mini_portile2 (~> 2.3.0)
5354
parallel (1.12.1)
54-
parser (2.5.1.0)
55+
parser (2.5.1.2)
5556
ast (~> 2.4.0)
56-
powerpack (0.1.1)
57+
powerpack (0.1.2)
5758
pry (0.11.3)
5859
coderay (~> 1.1.0)
5960
method_source (~> 0.9.0)
6061
pry-byebug (3.6.0)
6162
byebug (~> 10.0)
6263
pry (~> 0.10)
6364
rack (2.0.5)
64-
rack-test (1.0.0)
65+
rack-test (1.1.0)
6566
rack (>= 1.0, < 3)
6667
rails-dom-testing (2.0.3)
6768
activesupport (>= 4.2.0)
@@ -93,22 +94,23 @@ GEM
9394
rspec-mocks (~> 3.7.0)
9495
rspec-support (~> 3.7.0)
9596
rspec-support (3.7.1)
96-
rubocop (0.55.0)
97+
rubocop (0.58.2)
98+
jaro_winkler (~> 1.5.1)
9799
parallel (~> 1.10)
98-
parser (>= 2.5)
100+
parser (>= 2.5, != 2.5.1.1)
99101
powerpack (~> 0.1)
100102
rainbow (>= 2.2.2, < 4.0)
101103
ruby-progressbar (~> 1.7)
102104
unicode-display_width (~> 1.0, >= 1.0.1)
103-
rubocop-rspec (1.25.1)
104-
rubocop (>= 0.53.0)
105+
rubocop-rspec (1.27.0)
106+
rubocop (>= 0.56.0)
105107
ruby-progressbar (1.9.0)
106108
sqlite3 (1.3.13)
107109
thor (0.20.0)
108110
thread_safe (0.3.6)
109111
tzinfo (1.2.5)
110112
thread_safe (~> 0.1)
111-
unicode-display_width (1.3.2)
113+
unicode-display_width (1.4.0)
112114

113115
PLATFORMS
114116
ruby
@@ -121,4 +123,4 @@ DEPENDENCIES
121123
sqlite3
122124

123125
BUNDLED WITH
124-
1.16.1
126+
1.16.2

lib/normalizy/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module Normalizy
4-
VERSION = '1.1.1'
4+
VERSION = '1.2.0'
55
end

0 commit comments

Comments
 (0)