From 49fa02c9b4c4429591ca6d772d0283fa5afffbdd Mon Sep 17 00:00:00 2001 From: Stefanni Brasil Date: Tue, 2 Apr 2024 07:53:16 -0600 Subject: [PATCH] New patch release (#2925) --- CHANGELOG.md | 19 +++++++++++++++++++ Gemfile.lock | 2 +- lib/faker/version.rb | 2 +- 3 files changed, 21 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 076907f3e0..ddf02967ff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,24 @@ # Changelog +## [v3.3.1](https://github.com/faker-ruby/faker/tree/v3.3.1) (2024-04-02) + +### Bug fixes + +* Fix bug on phone number generator for `en-US` locale caused by incorrect `.yml` file structure by @aprescott in https://github.com/faker-ruby/faker/pull/2924 + +### What's Changed + +* Added docs for Deprecator in CONTRIBUTING.md by @keshavbiswa in https://github.com/faker-ruby/faker/pull/2919 +* Rename Faker::show to Faker::Theater by @keshavbiswa in https://github.com/faker-ruby/faker/pull/2921 +* renamed nhs to national_health_service by @keshavbiswa in https://github.com/faker-ruby/faker/pull/2923 + +### New Contributors +* @aprescott made their first contribution in https://github.com/faker-ruby/faker/pull/2924 + +**Full Changelog**: https://github.com/faker-ruby/faker/compare/v3.3.0...v3.3.1 + +------------------------- + ## [v3.3.0](https://github.com/faker-ruby/faker/tree/v3.3.0) (2024-03-25) ### Bug Fixes diff --git a/Gemfile.lock b/Gemfile.lock index 016682d98a..57b2b51aac 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - faker (3.3.0) + faker (3.3.1) i18n (>= 1.8.11, < 2) GEM diff --git a/lib/faker/version.rb b/lib/faker/version.rb index 112f1b4851..07e4f0e6a3 100644 --- a/lib/faker/version.rb +++ b/lib/faker/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Faker # :nodoc: - VERSION = '3.3.0' + VERSION = '3.3.1' end