Skip to content

Commit 146947c

Browse files
authored
2.5.0 Release documentation. (#1657)
1 parent 32126b1 commit 146947c

File tree

6 files changed

+59
-10
lines changed

6 files changed

+59
-10
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,20 +29,20 @@ In the pom.xml, add the following fragment to the `dependencies` section:
2929
<dependency>
3030
<groupId>net.datafaker</groupId>
3131
<artifactId>datafaker</artifactId>
32-
<version>2.4.4</version>
32+
<version>2.5.0</version>
3333
</dependency>
3434
```
3535

3636
For Gradle users, add the following to your build.gradle file.
3737

3838
```groovy
3939
dependencies {
40-
implementation 'net.datafaker:datafaker:2.4.4'
40+
implementation 'net.datafaker:datafaker:2.5.0'
4141
}
4242
4343
```
4444

45-
You can also use the snapshot version (`2.4.5-SNAPSHOT`), which automatically gets published
45+
You can also use the snapshot version (`2.5.1-SNAPSHOT`), which automatically gets published
4646
after every push to the main branch of this repository. Binary repository URL for snapshots download is
4747
`https://s01.oss.sonatype.org/content/repositories/snapshots/`.
4848

docs/documentation/providers.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,9 @@ Number of providers per Datafaker version
3131
| 2.3.0 | 9 | 247 |
3232
| 2.4.0 | 3 | 250 |
3333
| 2.4.4 | 2 | 252 |
34+
| 2.5.0 | 1 | 253 |
3435

35-
Datafaker comes with a total of 252 data providers:
36+
Datafaker comes with a total of 253 data providers:
3637

3738
| Name | Description | Group | Since |
3839
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------|-------|
@@ -91,6 +92,7 @@ Datafaker comes with a total of 252 data providers:
9192
| [Cosmere](https://javadoc.io/doc/net.datafaker/datafaker/latest/net/datafaker/providers/base/Cosmere.html) | The cosmere is a fictional shared universe where several of Brandon Sanderson's books take place. | Base | 1.7.0 |
9293
| [Country](https://javadoc.io/doc/net.datafaker/datafaker/latest/net/datafaker/providers/base/Country.html) | | Base | 0.8.0 |
9394
| [Cowboy Bebop](https://javadoc.io/doc/net.datafaker/datafaker/latest/net/datafaker/providers/entertainment/CowboyBebop.html) | Cowboy Bebop is a Japanese neo-noir science fiction anime television series, which originally ran from 1998 to 1999. | Entertainment | 1.8.0 |
95+
| [Credentials](https://javadoc.io/doc/net.datafaker/datafaker/latest/net/datafaker/providers/base/Credentials.html) | Generates credentials such as usernames, uids and passwords. | Base | 2.5.0 |
9496
| [Cricket](https://javadoc.io/doc/net.datafaker/datafaker/latest/net/datafaker/providers/sport/Cricket.html) | | Sport | 1.7.0 |
9597
| [Crypto Coin](https://javadoc.io/doc/net.datafaker/datafaker/latest/net/datafaker/providers/base/CryptoCoin.html) | | Base | 1.3.0 |
9698
| [Culture Series](https://javadoc.io/doc/net.datafaker/datafaker/latest/net/datafaker/providers/base/CultureSeries.html) | The Culture series is a science fiction series written by Scottish author Iain M. Banks and released from 1987 through to 2012. | Base | 1.7.0 |

docs/releases/2.5.0.md

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
# Datafaker 2.5.0 (16-09-2025)
2+
3+
## What's Changed
4+
5+
* Updated release documentation and set autopublish while publishing to… by @bodiam in https://github.com/datafaker-net/datafaker/pull/1588
6+
* Add some new titles to the Zelda game list by @yuokada in https://github.com/datafaker-net/datafaker/pull/1589
7+
* Fix Singapore ID number generation by @asolntsev in https://github.com/datafaker-net/datafaker/pull/1594
8+
* Removing parent, not sure if still needed. by @bodiam in https://github.com/datafaker-net/datafaker/pull/1600
9+
* [build] Use jdk25-ea in CI by @snuyanzin in https://github.com/datafaker-net/datafaker/pull/1601
10+
* Refactor tests extending `BaseFakerTest` by @asolntsev in https://github.com/datafaker-net/datafaker/pull/1606
11+
* Refactor BaseFakerTest (provider list test) by @asolntsev in https://github.com/datafaker-net/datafaker/pull/1607
12+
* Fix csv generate by limit by @abudevich in https://github.com/datafaker-net/datafaker/pull/1615
13+
* Avoid useless `NoSuchMethodRuntimeException` in logs by @asolntsev in https://github.com/datafaker-net/datafaker/pull/1620
14+
* Remove duplicates in "*.yml" files by @asolntsev in https://github.com/datafaker-net/datafaker/pull/1608
15+
* Fix flaky test WeightedRandomSelectorTest by @asolntsev in https://github.com/datafaker-net/datafaker/pull/1626
16+
* Fixed toLocalPart; Fixed tests; Fixed formatting by @rcriosbr in https://github.com/datafaker-net/datafaker/pull/1624
17+
* Creates new Credential provider; Deprecated Internet provider methods by @rcriosbr in https://github.com/datafaker-net/datafaker/pull/1628
18+
* Renamed Credential to Credentials by @bodiam in https://github.com/datafaker-net/datafaker/pull/1630
19+
* make Brazilian ID Number accessible via `faker.idNumber()` by @asolntsev in https://github.com/datafaker-net/datafaker/pull/1631
20+
* Removed System.out.printlns and other useless bits. by @bodiam in https://github.com/datafaker-net/datafaker/pull/1632
21+
* Fix Correct typo in kpop.boy_bands key in ko.yml by @Chanwon-Seo in https://github.com/datafaker-net/datafaker/pull/1635
22+
* Feat Improve Korean name data in ko.yml by @Chanwon-Seo in https://github.com/datafaker-net/datafaker/pull/1636
23+
* Update CreditCard formats in Finance provider by @Fishbowler in https://github.com/datafaker-net/datafaker/pull/1637
24+
* Finance Provider - update Swift IBAN data standard from v87 to v99 by @Fishbowler in https://github.com/datafaker-net/datafaker/pull/1641
25+
* Add missing javadoc for the Finance provider by @Fishbowler in https://github.com/datafaker-net/datafaker/pull/1640
26+
* Add Starships to the Star Trek provider by @Fishbowler in https://github.com/datafaker-net/datafaker/pull/1642
27+
* Make Finance provider's UnionPay test more readable, especially on failure by @Fishbowler in https://github.com/datafaker-net/datafaker/pull/1643
28+
* Make "as" message more informative in few tests by @asolntsev in https://github.com/datafaker-net/datafaker/pull/1644
29+
* Fewer logs in tests by @asolntsev in https://github.com/datafaker-net/datafaker/pull/1646
30+
* Corrected typos in ko.yml by @momoysm in https://github.com/datafaker-net/datafaker/pull/1645
31+
* Add methods to generate random port within given range by @asolntsev in https://github.com/datafaker-net/datafaker/pull/1651
32+
* Remove unneeded test `testNoDuplications` by @asolntsev in https://github.com/datafaker-net/datafaker/pull/1652
33+
* Refactoring: eliminate recursive provider calls by @asolntsev in https://github.com/datafaker-net/datafaker/pull/1650
34+
35+
## New Contributors
36+
* @abudevich made their first contribution in https://github.com/datafaker-net/datafaker/pull/1615
37+
* @rcriosbr made their first contribution in https://github.com/datafaker-net/datafaker/pull/1624
38+
* @Chanwon-Seo made their first contribution in https://github.com/datafaker-net/datafaker/pull/1635
39+
* @Fishbowler made their first contribution in https://github.com/datafaker-net/datafaker/pull/1637
40+
* @momoysm made their first contribution in https://github.com/datafaker-net/datafaker/pull/1645
41+
42+
**Full Changelog**: https://github.com/datafaker-net/datafaker/compare/2.4.4...2.5.0
43+
44+
## Providers added
45+
46+
See https://www.datafaker.net/documentation/providers/
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Datafaker 2.5.0 (07-04-2025)
1+
# Datafaker 2.5.1-SNAPSHOT (TBD)
22

33
## What's Changed
44

mkdocs.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,8 @@ plugins:
8080
# Customization
8181
extra:
8282
datafaker:
83-
version: 2.4.4
84-
snapshot: 2.4-5-SNAPSHOT
83+
version: 2.5.0
84+
snapshot: 2.5.1-SNAPSHOT
8585

8686
# Page tree
8787
nav:
@@ -103,15 +103,16 @@ nav:
103103
- Performance:
104104
- Datafaker 1.4.0: documentation/performance140.md
105105
- Datafaker 1.7.0: documentation/performance170.md
106-
- Javadoc: 'https://s01.oss.sonatype.org/service/local/repositories/releases/archive/net/datafaker/datafaker/2.4.4/datafaker-2.4.4-javadoc.jar/!/index.html'
106+
- Javadoc: 'https://s01.oss.sonatype.org/service/local/repositories/releases/archive/net/datafaker/datafaker/2.5.0/datafaker-2.5.0-javadoc.jar/!/index.html'
107107
- Contributing: documentation/contributing.md
108108
- First time contributor: documentation/first-time-contributor.md
109109
- License: documentation/license.md
110110
# - Changelog:
111111
# - Changes: changelog/index.md
112112
# - How to upgrade: upgrade.md
113113
- Releases:
114-
- 2.5.0-SNAPSHOT: releases/2.5.0-SNAPSHOT.md
114+
- 2.5.1-SNAPSHOT: releases/2.5.1-SNAPSHOT.md
115+
- 2.5.0: releases/2.5.0.md
115116
- 2.4.4: releases/2.4.4.md
116117
- 2.4.3: releases/2.4.3.md
117118
- 2.4.2: releases/2.4.2.md

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>net.datafaker</groupId>
55
<artifactId>datafaker</artifactId>
66
<packaging>jar</packaging>
7-
<version>2.4.5-SNAPSHOT</version>
7+
<version>2.5.1-SNAPSHOT</version>
88
<name>Datafaker</name>
99
<description>
1010
This library is an improved fork of JavaFaker (as well as Ruby's stympy/faker gem and Perl's Data::Faker

0 commit comments

Comments
 (0)