Skip to content

Commit

Permalink
Bump version to 2.2.1 (#1716)
Browse files Browse the repository at this point in the history
* Bump version to 2.2.1

* Update CHANGELOG.md
  • Loading branch information
vbrazo authored Aug 31, 2019
1 parent 772d45d commit 9365f60
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Change Log

## [v2.2.1](https://github.com/faker-ruby/faker/tree/v2.2.1) (2019-30-08)

## Bug/Fixes

- [PR #1712](https://github.com/faker-ruby/faker/pull/1712) Fix number(digits: 1) always returns 0 [@ianlet](https://github.com/ianlet)

`Faker::Number.number(digits: 1)` was always returning `0`.

Fixing number with one digit caused the test_insignificant_zero to fail. As it seemed that the behavior tested by test_insignificant_zero was already covered by test_number and test_decimal, we removed it to prevent duplication.

## [v2.2.0](https://github.com/faker-ruby/faker/tree/v2.2.0) (2019-25-08)

## Deprecate
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
faker (2.2.0)
faker (2.2.1)
i18n (>= 0.8)

GEM
Expand Down
2 changes: 1 addition & 1 deletion lib/faker/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Faker #:nodoc:
VERSION = '2.2.0'
VERSION = '2.2.1'
end

0 comments on commit 9365f60

Please sign in to comment.