From 68207d5c960259090c61fa16abaefc15a3715b68 Mon Sep 17 00:00:00 2001 From: Vitor Oliveira Date: Thu, 19 Sep 2019 16:24:16 -0700 Subject: [PATCH] Bump version to 2.4.0 (#1754) * Bump version to 2.4.0 * Faker::VERSION to 2.4.0 * Update CHANGELOG.md Co-Authored-By: Connor Shea --- CHANGELOG.md | 25 +++++++++++++++++++++++++ Gemfile.lock | 2 +- lib/faker/version.rb | 2 +- 3 files changed, 27 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cb20188862..ae93257351 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,30 @@ # Change Log +## [v2.4.0](https://github.com/faker-ruby/faker/tree/v2.4.0) (2019-19-09) + +## Documentation + +- [PR #1750](https://github.com/faker-ruby/faker/pull/1750) add only japanese word spec [@4geru](https://github.com/4geru) +- [PR #1740](https://github.com/faker-ruby/faker/pull/1740) Add more YARD docs [@connorshea](https://github.com/connorshea) +- [PR #1747](https://github.com/faker-ruby/faker/pull/1747) Fix PR links [@geniou](https://github.com/geniou) + +## Feature Request + +- [PR #1742](https://github.com/faker-ruby/faker/pull/1742) Add Faker::Blockchain::Aeternity [@2pd](https://github.com/2pd) + +## Update locales + +- [PR #1743](https://github.com/faker-ruby/faker/pull/1743) Fix another ambiguity in element_symbol field [@psibi](https://github.com/psibi) +- [PR #1748](https://github.com/faker-ruby/faker/pull/1748) fix typo from bread to breed [@4geru](https://github.com/4geru) +- [PR #1752](https://github.com/faker-ruby/faker/pull/1752) fix creature i18n path in japanese [@4geru](https://github.com/4geru) + +## Update local dependencies + +The following development dependencies were updated: +- Update simplecov requirement from = 0.17.0 to = 0.17.1 (#1749) + +------------------------------------------------------------------------------ + ## [v2.3.0](https://github.com/faker-ruby/faker/tree/v2.3.0) (2019-12-09) ## Documentation diff --git a/Gemfile.lock b/Gemfile.lock index ea6dadb935..8c8f10b801 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - faker (2.3.0) + faker (2.4.0) i18n (~> 1.6.0) GEM diff --git a/lib/faker/version.rb b/lib/faker/version.rb index e0bd58b448..e1316d735f 100644 --- a/lib/faker/version.rb +++ b/lib/faker/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Faker #:nodoc: - VERSION = '2.3.0' + VERSION = '2.4.0' end