diff --git a/CHANGELOG.md b/CHANGELOG.md index 3a1f8656cfb..6cda8d376b9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,23 @@ All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines. +## [10.0.0](https://github.com/faker-js/faker/compare/v10.0.0-beta.0...v10.0.0) (2025-08-21) + + +### New Locales + +* **locale:** extended list of colors in Polish ([#3586](https://github.com/faker-js/faker/issues/3586)) ([9940d54](https://github.com/faker-js/faker/commit/9940d54f75205b65a74d11484cb385c85656a43f)) + + +### Features + +* **locales:** add animal vocabulary(bear, bird, cat, rabbit, pet_name) in Korean ([#3535](https://github.com/faker-js/faker/issues/3535)) ([0d2143c](https://github.com/faker-js/faker/commit/0d2143c75d804d1dc53c17078eb59bc1970a07d1)) + + +### Changed Locales + +* **locale:** remove invalid credit card issuer patterns ([#3568](https://github.com/faker-js/faker/issues/3568)) ([9783d95](https://github.com/faker-js/faker/commit/9783d95a8e43c45bc44c5c0c546b250b6c2ae140)) + ## [10.0.0-beta.0](https://github.com/faker-js/faker/compare/v9.9.0...v10.0.0-beta.0) (2025-07-09) diff --git a/README.md b/README.md index abcb4bc57fc..b9614216b40 100644 --- a/README.md +++ b/README.md @@ -24,11 +24,11 @@ Please proceed to the [Getting Started Guide](https://fakerjs.dev/guide/) for th For detailed API documentation, please select the version of the documentation you are looking for. -| Version | Website | -| :---------: | :------------------------ | -| v10 (next) | https://next.fakerjs.dev/ | -| v9 (stable) | https://fakerjs.dev/ | -| v8 (old) | https://v8.fakerjs.dev/ | +| Version | Website | +| :----------: | :------------------------ | +| v10 (next) | https://next.fakerjs.dev/ | +| v10 (stable) | https://fakerjs.dev/ | +| v9 (old) | https://v9.fakerjs.dev/ | --- @@ -81,7 +81,7 @@ export const users = faker.helpers.multiple(createRandomUser, { ## 💎 Modules -An in-depth overview of the API methods is available in the documentation for [v9 (stable)](https://fakerjs.dev/api/) and [v10.\* (next)](https://next.fakerjs.dev/api/). +An in-depth overview of the API methods is available in the documentation for [v10 (stable)](https://fakerjs.dev/api/) and [v10.\* (next)](https://next.fakerjs.dev/api/). ### Templates diff --git a/docs/guide/upgrading.md b/docs/guide/upgrading.md index b717ec96cd4..4382de372eb 100644 --- a/docs/guide/upgrading.md +++ b/docs/guide/upgrading.md @@ -6,10 +6,6 @@ outline: [2, 3] This is the migration guide for upgrading from v9 to v10. -::: tip -v10 has not yet been released. This page contains a work-in-progress list of breaking changes in v10. -::: - ::: info Not the version you are looking for? - [Upgrading to v9](https://v9.fakerjs.dev/guide/upgrading.html) diff --git a/docs/guide/usage.md b/docs/guide/usage.md index 9168e752cb1..89c6b0cd84d 100644 --- a/docs/guide/usage.md +++ b/docs/guide/usage.md @@ -79,7 +79,7 @@ const randomEmail = faker.internet.email(); // Tomasa_Ferry14@hotmail.com ``` ::: info Note -It is highly recommended to use version tags when importing libraries in Deno, e.g: `import { faker } from "https://esm.sh/@faker-js/faker@v10.0.0-beta.0"`. +It is highly recommended to use version tags when importing libraries in Deno, e.g: `import { faker } from "https://esm.sh/@faker-js/faker@v10.0.0"`. ::: ### Alternative CDN links diff --git a/package.json b/package.json index 8921cf0920d..d7aebd117fb 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@faker-js/faker", - "version": "10.0.0-beta.0", + "version": "10.0.0", "description": "Generate massive amounts of fake contextual data", "scripts": { "clean": "git clean -fdx --exclude _local",