Skip to content

Commit a21875f

Browse files
author
Stefanni Brasil
authored
Bump version to v3.3.0 (#2920)
1 parent fcf41f1 commit a21875f

File tree

3 files changed

+44
-8
lines changed

3 files changed

+44
-8
lines changed

CHANGELOG.md

+42-6
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,56 @@
11
# Changelog
22

3-
## What's Changed
3+
## [v3.3.0](https://github.com/faker-ruby/faker/tree/v3.3.0) (2024-03-25)
4+
5+
### Bug Fixes
6+
7+
* Remove the duplicate method Faker::Commerce.material description by @mmarusyk in https://github.com/faker-ruby/faker/pull/2914
8+
9+
### Features
10+
11+
* Add Kenya to supported countries by @AndrewNduati in https://github.com/faker-ruby/faker/pull/2871
12+
* Benchmarking loading JSON file vs YML file by @salochara in https://github.com/faker-ruby/faker/pull/2897
13+
14+
### What's changed
15+
16+
* 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
17+
* Fix/Deprecate FmaBrotherhood Generator by @kirkkwang in https://github.com/faker-ruby/faker/pull/2856
18+
* Fix/Deprecate Faker::Australia to Faker::Locations::Australia by @keshavbiswa in https://github.com/faker-ruby/faker/pull/2869
19+
* Add note about EOL dependencies by @stefannibrasil in https://github.com/faker-ruby/faker/pull/2890
20+
21+
### Update local dependencies
22+
23+
* Bump test-unit from 3.6.1 to 3.6.2 by @dependabot in https://github.com/faker-ruby/faker/pull/2906
24+
* Bump i18n from 1.14.1 to 1.14.4 by @dependabot in https://github.com/faker-ruby/faker/pull/2913
25+
* Bump rubocop from 1.60.2 to 1.62.1 by @dependabot in https://github.com/faker-ruby/faker/pull/2916
26+
* Bump yard from 0.9.34 to 0.9.36 by @dependabot in https://github.com/faker-ruby/faker/pull/2909
27+
* Bump minitest from 5.22.2 to 5.22.3 by @dependabot in https://github.com/faker-ruby/faker/pull/2917
28+
29+
### New Contributors
30+
31+
* @AndrewNduati made their first contribution in https://github.com/faker-ruby/faker/pull/2871
32+
* @Jamal-A-Mohamed made their first contribution in https://github.com/faker-ruby/faker/pull/2858
33+
* @mmarusyk made their first contribution in https://github.com/faker-ruby/faker/pull/2914
34+
35+
**Full Changelog**: https://github.com/faker-ruby/faker/compare/v3.2.3...v3.3.0
36+
37+
-------------------------
438

539
## [v3.2.3](https://github.com/faker-ruby/faker/tree/v3.2.3) (2024-01-12)
640

41+
### What's Changed
42+
743
Happy 2024 with a new faker-ruby release.
844

945
This version includes bug and documentation fixes, and some changes on the contributing guides.
1046

11-
## faker-ruby is is not accepting new features proposals
47+
### faker-ruby is is not accepting new features proposals
1248

1349
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.
1450

1551
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.
1652

17-
## Bug fixes
53+
### Bug fixes
1854
* Fix Phone number long number and other updates by @stefannibrasil in https://github.com/faker-ruby/faker/pull/2842
1955
* Favor 'The Room' instead of 'Room' by @kirkkwang in https://github.com/faker-ruby/faker/pull/2854
2056
* Limit generated Discover cards to 19 digits by @jamie in https://github.com/faker-ruby/faker/pull/2845
@@ -26,20 +62,20 @@ As we have limited time to invest in faker, reviewing _new_ generators and local
2662
* Update `Internet#username` separator param to match with the example by @AlexandreL0pes in https://github.com/faker-ruby/faker/pull/2882
2763
* fix polish bban_pattern by @artur1313 in https://github.com/faker-ruby/faker/pull/2887
2864

29-
## What's Changed
65+
### What's Changed
3066
* Add benchmark by @salochara in https://github.com/faker-ruby/faker/pull/2855
3167
* Freeze new generator and locales by @stefannibrasil in https://github.com/faker-ruby/faker/pull/2886
3268
* Remove deprecate safe_email and free_email methods by @hatsu38 in https://github.com/faker-ruby/faker/pull/2841
3369
* Update contribution guidelines and PULL_REQUEST_TEMPLATE by @stefannibrasil in https://github.com/faker-ruby/faker/pull/2878
3470
* Remove unmaintained `History.md` by @y-yagi in https://github.com/faker-ruby/faker/pull/2880
3571
* Adds Ruby 3.3 to the CI matrix by @m-nakamura145 in https://github.com/faker-ruby/faker/pull/2883
3672

37-
## Update local dependencies
73+
### Update local dependencies
3874
* Bump rubocop from 1.58.0 to 1.59.0 by @dependabot in https://github.com/faker-ruby/faker/pull/2865
3975
* Bump rubocop-minitest from 0.34.3 to 0.34.4 by @dependabot in https://github.com/faker-ruby/faker/pull/2884
4076
* Bump minitest version by @stefannibrasil in https://github.com/faker-ruby/faker/pull/2889
4177

42-
## New Contributors
78+
### New Contributors
4379
* @kirkkwang made their first contribution in https://github.com/faker-ruby/faker/pull/2854
4480
* @jamie made their first contribution in https://github.com/faker-ruby/faker/pull/2845
4581
* @hatsu38 made their first contribution in https://github.com/faker-ruby/faker/pull/2859

Gemfile.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
faker (3.2.3)
4+
faker (3.3.0)
55
i18n (>= 1.8.11, < 2)
66

77
GEM

lib/faker/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module Faker # :nodoc:
4-
VERSION = '3.2.3'
4+
VERSION = '3.3.0'
55
end

0 commit comments

Comments
 (0)