From e1193d31f01c8aba3d4c334be53396c72dbb25a2 Mon Sep 17 00:00:00 2001 From: Vitor Oliveira Date: Tue, 9 Feb 2021 20:34:01 -0800 Subject: [PATCH 1/4] Update changelog with latest changes --- CHANGELOG.md | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index d295dcfd42..488bf0b724 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,36 @@ # Change Log +## [v2.16.0](https://github.com/faker-ruby/faker/tree/v2.16.0) (2020-02-09) + +## Chores + +- [PR #2262](https://github.com/faker-ruby/faker/pull/2262) Workaround build error for ruby-head [@koic](https://github.com/koic) +- [PR #2257](https://github.com/faker-ruby/faker/pull/2257) Trim trailing white space throughout the project [@koic](https://github.com/koic) +- [PR #2229](https://github.com/faker-ruby/faker/pull/2229) Use Random.new instead of `Random::DEFAULT` [@connorshea](https://github.com/connorshea) +- [PR #2226](https://github.com/faker-ruby/faker/pull/2226) Add Ruby 3.0 to CI matrix [@connorshea](https://github.com/connorshea) + +## Documentation + +- [PR #2240](https://github.com/faker-ruby/faker/pull/2240) Updated `rock_band.md` to include example for using song generator [@jsca-kwok](https://github.com/jsca-kwok) +- [PR #2205](https://github.com/faker-ruby/faker/pull/2205) `Faker::Mountain` doc [@bipashant](https://github.com/bipashant) +- [PR #2247](https://github.com/faker-ruby/faker/pull/2247) 2243 yard doc [@sudeeptarlekar](https://github.com/sudeeptarlekar) + +## Feature Request + +- [PR #2221](https://github.com/faker-ruby/faker/pull/2221) Added rock band song generator [@jsca-kwok](https://github.com/jsca-kwok) +- [PR #2197](https://github.com/faker-ruby/faker/pull/2197) Add `Faker::Games::Touhou` [@dysnomian](https://github.com/dysnomian) +- [PR #2208](https://github.com/faker-ruby/faker/pull/2208) [@Pierre-Michard](https://github.com/Pierre-Michard) Feat/add blockchain Tezos keys [@akettal](https://github.com/akettal) + +## Update locales + +- [PR #2238](https://github.com/faker-ruby/faker/pull/2238) added some data in `fr.yml` and `football.yml` [@MathGL92](https://github.com/MathGL92) +- [PR #2222](https://github.com/faker-ruby/faker/pull/2222) Add Japanese for `Faker::Book` [@zoshigayan](https://github.com/zoshigayan) +- [PR #2201](https://github.com/faker-ruby/faker/pull/2201) Typo in Lebowski Quote [@rgraff](https://github.com/rgraff) +- [PR #2197](https://github.com/faker-ruby/faker/pull/2197) Add `Faker::Games::Touhou` [@dysnomian](https://github.com/dysnomian) +- [PR #2217](https://github.com/faker-ruby/faker/pull/2217) Add Sephiroth and Northern Cave to `Faker::Games::SuperSmashBros` [@boardfish](https://github.com/boardfish) + +------------------------------------------------------------------------------ + ## [v2.15.1](https://github.com/faker-ruby/faker/tree/v2.15.1) (2020-11-24) - Rollback PR #2169 and bump 2.15.1 [#2203](https://github.com/faker-ruby/faker/pull/2203) @vbrazo From 0d0cb3414d3370db4a818b95ccdd841a2c177794 Mon Sep 17 00:00:00 2001 From: Vitor Oliveira Date: Tue, 9 Feb 2021 20:34:08 -0800 Subject: [PATCH 2/4] Cut 2.16.0 --- Gemfile.lock | 6 +++--- lib/faker/version.rb | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index eb40a3fafb..78ce2e255e 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - faker (2.15.1) + faker (2.16.0) i18n (>= 1.6, < 2) GEM @@ -9,9 +9,9 @@ GEM specs: ast (2.4.1) coderay (1.1.2) - concurrent-ruby (1.1.7) + concurrent-ruby (1.1.8) docile (1.3.2) - i18n (1.8.5) + i18n (1.8.8) concurrent-ruby (~> 1.0) json (2.3.0) method_source (1.0.0) diff --git a/lib/faker/version.rb b/lib/faker/version.rb index 5a995f9689..81b265d31c 100644 --- a/lib/faker/version.rb +++ b/lib/faker/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Faker #:nodoc: - VERSION = '2.15.1' + VERSION = '2.16.0' end From 59d46b481aed679aa9cb224fdf36bfc8e45987c7 Mon Sep 17 00:00:00 2001 From: Vitor Oliveira Date: Tue, 9 Feb 2021 20:39:30 -0800 Subject: [PATCH 3/4] Update CHANGELOG.md --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 488bf0b724..a9fd5e077b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,7 +19,7 @@ - [PR #2221](https://github.com/faker-ruby/faker/pull/2221) Added rock band song generator [@jsca-kwok](https://github.com/jsca-kwok) - [PR #2197](https://github.com/faker-ruby/faker/pull/2197) Add `Faker::Games::Touhou` [@dysnomian](https://github.com/dysnomian) -- [PR #2208](https://github.com/faker-ruby/faker/pull/2208) [@Pierre-Michard](https://github.com/Pierre-Michard) Feat/add blockchain Tezos keys [@akettal](https://github.com/akettal) +- [PR #2208](https://github.com/faker-ruby/faker/pull/2208) Feat/add blockchain Tezos keys [@akettal](https://github.com/akettal) [@Pierre-Michard](https://github.com/Pierre-Michard) ## Update locales From 7b5db541f487f93488ec9a75765a36ba12017d3f Mon Sep 17 00:00:00 2001 From: Vitor Oliveira Date: Tue, 9 Feb 2021 20:41:10 -0800 Subject: [PATCH 4/4] Reordering - ocd issues --- CHANGELOG.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a9fd5e077b..0477092f19 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,23 +11,23 @@ ## Documentation +- [PR #2247](https://github.com/faker-ruby/faker/pull/2247) 2243 yard doc [@sudeeptarlekar](https://github.com/sudeeptarlekar) - [PR #2240](https://github.com/faker-ruby/faker/pull/2240) Updated `rock_band.md` to include example for using song generator [@jsca-kwok](https://github.com/jsca-kwok) - [PR #2205](https://github.com/faker-ruby/faker/pull/2205) `Faker::Mountain` doc [@bipashant](https://github.com/bipashant) -- [PR #2247](https://github.com/faker-ruby/faker/pull/2247) 2243 yard doc [@sudeeptarlekar](https://github.com/sudeeptarlekar) ## Feature Request - [PR #2221](https://github.com/faker-ruby/faker/pull/2221) Added rock band song generator [@jsca-kwok](https://github.com/jsca-kwok) -- [PR #2197](https://github.com/faker-ruby/faker/pull/2197) Add `Faker::Games::Touhou` [@dysnomian](https://github.com/dysnomian) - [PR #2208](https://github.com/faker-ruby/faker/pull/2208) Feat/add blockchain Tezos keys [@akettal](https://github.com/akettal) [@Pierre-Michard](https://github.com/Pierre-Michard) +- [PR #2197](https://github.com/faker-ruby/faker/pull/2197) Add `Faker::Games::Touhou` [@dysnomian](https://github.com/dysnomian) ## Update locales - [PR #2238](https://github.com/faker-ruby/faker/pull/2238) added some data in `fr.yml` and `football.yml` [@MathGL92](https://github.com/MathGL92) - [PR #2222](https://github.com/faker-ruby/faker/pull/2222) Add Japanese for `Faker::Book` [@zoshigayan](https://github.com/zoshigayan) +- [PR #2217](https://github.com/faker-ruby/faker/pull/2217) Add Sephiroth and Northern Cave to `Faker::Games::SuperSmashBros` [@boardfish](https://github.com/boardfish) - [PR #2201](https://github.com/faker-ruby/faker/pull/2201) Typo in Lebowski Quote [@rgraff](https://github.com/rgraff) - [PR #2197](https://github.com/faker-ruby/faker/pull/2197) Add `Faker::Games::Touhou` [@dysnomian](https://github.com/dysnomian) -- [PR #2217](https://github.com/faker-ruby/faker/pull/2217) Add Sephiroth and Northern Cave to `Faker::Games::SuperSmashBros` [@boardfish](https://github.com/boardfish) ------------------------------------------------------------------------------