From 929740442209bc43a0812850607a1fae8ac33902 Mon Sep 17 00:00:00 2001 From: Washington Botelho Date: Wed, 18 May 2022 00:41:18 -0300 Subject: [PATCH] v1.7.0 --- CHANGELOG.md | 22 ++++++++++++++++------ Gemfile.lock | 2 +- lib/normalizy/version.rb | 2 +- 3 files changed, 18 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1432076..5ef5a89 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +## v1.7.0 + +### Features + +- Adds `truncate` filter; [#3](https://github.com/wbotelhos/normalizy/pull/3) by [rafaeldev](https://github.com/rafaeldev) + +### Updates + +- Adds RuboCop task on the CI; + ## v1.6.0 ### Fixes @@ -9,13 +19,13 @@ - Adds Code Quality; - Adds Test Coverage; - Migrates the build to Github Actions; -- Removes Git dependency for build; +- Removes Git dependency for the build; ## v1.5.0 ### Features -- Filter `date` now supports call object that respond to `beginning_of_day` or `end_of_day`; +- Filter `date` now supports call object that responds to `beginning_of_day` or `end_of_day`; ## v1.4.0 @@ -39,19 +49,19 @@ ### Fixes -- When use `slug` filter the original values was not saved. +- When using `slug` filter the original values were not saved. ## v1.1.0 ### Features -- Added `slug` filter with option to apply the value on other field. +- Added `slug` filter with the option to apply the value on other fields. ## v1.0.1 ### Fixes -- When `type` options was `cents` and had no decimal on number, extra decimal were added. +- When `type` options were `cents` and had no decimal on the number, extra decimals were added. ## v1.0.0 @@ -73,7 +83,7 @@ ### Updates - `number` filter no more make cast automatically. -- `number` now accept `cast` options with method to be used on cast type; +- `number` now accept `cast` options with a method to be used on cast type; ### Features diff --git a/Gemfile.lock b/Gemfile.lock index 4074d11..1580aac 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - normalizy (1.6.0) + normalizy (1.7.0) activerecord (>= 4.1) GEM diff --git a/lib/normalizy/version.rb b/lib/normalizy/version.rb index bc8a0d8..eda16b5 100644 --- a/lib/normalizy/version.rb +++ b/lib/normalizy/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Normalizy - VERSION = '1.6.0' + VERSION = '1.7.0' end