From a21875f1f96071012d6035dae722d06d91474309 Mon Sep 17 00:00:00 2001 From: Stefanni Brasil Date: Mon, 25 Mar 2024 18:25:33 -0600 Subject: [PATCH] Bump version to v3.3.0 (#2920) --- CHANGELOG.md | 48 ++++++++++++++++++++++++++++++++++++++------ Gemfile.lock | 2 +- lib/faker/version.rb | 2 +- 3 files changed, 44 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5863a24321..076907f3e0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,20 +1,56 @@ # Changelog -## What's Changed +## [v3.3.0](https://github.com/faker-ruby/faker/tree/v3.3.0) (2024-03-25) + +### Bug Fixes + +* Remove the duplicate method Faker::Commerce.material description by @mmarusyk in https://github.com/faker-ruby/faker/pull/2914 + +### Features + +* Add Kenya to supported countries by @AndrewNduati in https://github.com/faker-ruby/faker/pull/2871 +* Benchmarking loading JSON file vs YML file by @salochara in https://github.com/faker-ruby/faker/pull/2897 + +### What's changed + +* Fix/Deprecate `Faker::IDNumber` to `Faker::IdNumber` to be more consistent with other generator's naming convention. by @Jamal-A-Mohamed in https://github.com/faker-ruby/faker/pull/2858 +* Fix/Deprecate FmaBrotherhood Generator by @kirkkwang in https://github.com/faker-ruby/faker/pull/2856 +* Fix/Deprecate Faker::Australia to Faker::Locations::Australia by @keshavbiswa in https://github.com/faker-ruby/faker/pull/2869 +* Add note about EOL dependencies by @stefannibrasil in https://github.com/faker-ruby/faker/pull/2890 + +### Update local dependencies + +* Bump test-unit from 3.6.1 to 3.6.2 by @dependabot in https://github.com/faker-ruby/faker/pull/2906 +* Bump i18n from 1.14.1 to 1.14.4 by @dependabot in https://github.com/faker-ruby/faker/pull/2913 +* Bump rubocop from 1.60.2 to 1.62.1 by @dependabot in https://github.com/faker-ruby/faker/pull/2916 +* Bump yard from 0.9.34 to 0.9.36 by @dependabot in https://github.com/faker-ruby/faker/pull/2909 +* Bump minitest from 5.22.2 to 5.22.3 by @dependabot in https://github.com/faker-ruby/faker/pull/2917 + +### New Contributors + +* @AndrewNduati made their first contribution in https://github.com/faker-ruby/faker/pull/2871 +* @Jamal-A-Mohamed made their first contribution in https://github.com/faker-ruby/faker/pull/2858 +* @mmarusyk made their first contribution in https://github.com/faker-ruby/faker/pull/2914 + +**Full Changelog**: https://github.com/faker-ruby/faker/compare/v3.2.3...v3.3.0 + +------------------------- ## [v3.2.3](https://github.com/faker-ruby/faker/tree/v3.2.3) (2024-01-12) +### What's Changed + Happy 2024 with a new faker-ruby release. This version includes bug and documentation fixes, and some changes on the contributing guides. -## faker-ruby is is not accepting new features proposals +### faker-ruby is is not accepting new features proposals As we [discussed here](https://github.com/orgs/faker-ruby/discussions/2877), we want to improve faker's performance and organization. There hasn't been to many bug reports and most of the open issues are related to performance and confusion around using faker. As we have limited time to invest in faker, reviewing _new_ generators and locales prevent us from focusing on the big picture work. With this decision, we hope to make the necessary changes for faker to go to the next level. Please read the Contributing guides for ways to help us get there. -## Bug fixes +### Bug fixes * Fix Phone number long number and other updates by @stefannibrasil in https://github.com/faker-ruby/faker/pull/2842 * Favor 'The Room' instead of 'Room' by @kirkkwang in https://github.com/faker-ruby/faker/pull/2854 * Limit generated Discover cards to 19 digits by @jamie in https://github.com/faker-ruby/faker/pull/2845 @@ -26,7 +62,7 @@ As we have limited time to invest in faker, reviewing _new_ generators and local * Update `Internet#username` separator param to match with the example by @AlexandreL0pes in https://github.com/faker-ruby/faker/pull/2882 * fix polish bban_pattern by @artur1313 in https://github.com/faker-ruby/faker/pull/2887 -## What's Changed +### What's Changed * Add benchmark by @salochara in https://github.com/faker-ruby/faker/pull/2855 * Freeze new generator and locales by @stefannibrasil in https://github.com/faker-ruby/faker/pull/2886 * Remove deprecate safe_email and free_email methods by @hatsu38 in https://github.com/faker-ruby/faker/pull/2841 @@ -34,12 +70,12 @@ As we have limited time to invest in faker, reviewing _new_ generators and local * Remove unmaintained `History.md` by @y-yagi in https://github.com/faker-ruby/faker/pull/2880 * Adds Ruby 3.3 to the CI matrix by @m-nakamura145 in https://github.com/faker-ruby/faker/pull/2883 -## Update local dependencies +### Update local dependencies * Bump rubocop from 1.58.0 to 1.59.0 by @dependabot in https://github.com/faker-ruby/faker/pull/2865 * Bump rubocop-minitest from 0.34.3 to 0.34.4 by @dependabot in https://github.com/faker-ruby/faker/pull/2884 * Bump minitest version by @stefannibrasil in https://github.com/faker-ruby/faker/pull/2889 -## New Contributors +### New Contributors * @kirkkwang made their first contribution in https://github.com/faker-ruby/faker/pull/2854 * @jamie made their first contribution in https://github.com/faker-ruby/faker/pull/2845 * @hatsu38 made their first contribution in https://github.com/faker-ruby/faker/pull/2859 diff --git a/Gemfile.lock b/Gemfile.lock index 103eac5a9b..74c1c86f3b 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - faker (3.2.3) + faker (3.3.0) i18n (>= 1.8.11, < 2) GEM diff --git a/lib/faker/version.rb b/lib/faker/version.rb index f4e3f56db2..112f1b4851 100644 --- a/lib/faker/version.rb +++ b/lib/faker/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Faker # :nodoc: - VERSION = '3.2.3' + VERSION = '3.3.0' end