Skip to content

Commit beb2d2d

Browse files
committed
v1.7.0
1 parent a53e620 commit beb2d2d

File tree

3 files changed

+18
-8
lines changed

3 files changed

+18
-8
lines changed

CHANGELOG.md

+16-6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## v1.7.0
2+
3+
### Features
4+
5+
- Adds `truncate` filter; [#3](https://github.com/wbotelhos/normalizy/pull/3) by [rafaeldev](https://github.com/rafaeldev)
6+
7+
### Updates
8+
9+
- Adds RuboCop task on the CI;
10+
111
## v1.6.0
212

313
### Fixes
@@ -9,13 +19,13 @@
919
- Adds Code Quality;
1020
- Adds Test Coverage;
1121
- Migrates the build to Github Actions;
12-
- Removes Git dependency for build;
22+
- Removes Git dependency for the build;
1323

1424
## v1.5.0
1525

1626
### Features
1727

18-
- Filter `date` now supports call object that respond to `beginning_of_day` or `end_of_day`;
28+
- Filter `date` now supports call object that responds to `beginning_of_day` or `end_of_day`;
1929

2030
## v1.4.0
2131

@@ -39,19 +49,19 @@
3949

4050
### Fixes
4151

42-
- When use `slug` filter the original values was not saved.
52+
- When using `slug` filter the original values were not saved.
4353

4454
## v1.1.0
4555

4656
### Features
4757

48-
- Added `slug` filter with option to apply the value on other field.
58+
- Added `slug` filter with the option to apply the value on other fields.
4959

5060
## v1.0.1
5161

5262
### Fixes
5363

54-
- When `type` options was `cents` and had no decimal on number, extra decimal were added.
64+
- When `type` options were `cents` and had no decimal on the number, extra decimals were added.
5565

5666
## v1.0.0
5767

@@ -73,7 +83,7 @@
7383
### Updates
7484

7585
- `number` filter no more make cast automatically.
76-
- `number` now accept `cast` options with method to be used on cast type;
86+
- `number` now accept `cast` options with a method to be used on cast type;
7787

7888
### Features
7989

Gemfile.lock

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

77
GEM

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.6.0'
4+
VERSION = '1.7.0'
55
end

0 commit comments

Comments
 (0)