Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: joke2k/faker
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v37.0.0
Choose a base ref
...
head repository: joke2k/faker
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v37.0.1
Choose a head ref
  • 4 commits
  • 7 files changed
  • 2 contributors

Commits on Mar 7, 2025

  1. fix typos in CHANGELOG

    fcurella committed Mar 7, 2025

    Verified

    This commit was signed with the committer’s verified signature.
    fcurella Flavio Curella
    Copy the full SHA
    2a1053c View commit details

Commits on Mar 18, 2025

  1. Fix last names from en_PK provider (#2190)

    * check for single-character en_PK names
    
    * separate last names by commas and remove "name" entries
    
    * fix formatting
    
    * allow for 2-word first and last names
    bradenkwebb authored Mar 18, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    450c2bc View commit details
  2. 📝 Update CHANGELOG.md

    fcurella committed Mar 18, 2025

    Verified

    This commit was signed with the committer’s verified signature.
    fcurella Flavio Curella
    Copy the full SHA
    c944ab4 View commit details
  3. Bump version: 37.0.0 → 37.0.1

    fcurella committed Mar 18, 2025

    Verified

    This commit was signed with the committer’s verified signature.
    fcurella Flavio Curella
    Copy the full SHA
    a69cb8a View commit details
Showing with 316 additions and 329 deletions.
  1. +1 −1 .bumpversion.cfg
  2. +4 −1 CHANGELOG.md
  3. +1 −1 VERSION
  4. +2 −2 docs/conf.py
  5. +1 −1 faker/__init__.py
  6. +292 −321 faker/providers/person/en_PK/__init__.py
  7. +15 −2 tests/providers/test_person.py
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 37.0.0
current_version = 37.0.1
files = VERSION faker/__init__.py docs/conf.py
commit = True
tag = True
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
## Changelog

### [v37.0.1 - 2025-03-18](https://github.com/joke2k/faker/compare/v37.0.0...v37.0.1)

* Fix last names from `en_PK` provider. Thanks @bradenkwebb.

### [v37.0.0 - 2025-03-07](https://github.com/joke2k/faker/compare/v36.2.3...v37.0.0)

* Fix: `es_ES` `doi()` to use standard DOI format.Thanks @jasur-py.
* Fix: `es_ES` `doi()` to use standard DOI format. Thanks @jasur-py.

### [v36.2.3 - 2025-03-07](https://github.com/joke2k/faker/compare/v36.2.2...v36.2.3)

2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
37.0.0
37.0.1
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
@@ -51,9 +51,9 @@
# built documents.
#
# The short X.Y version.
version = "37.0.0"
version = "37.0.1"
# The full version, including alpha/beta/rc tags.
release = "37.0.0"
release = "37.0.1"

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
2 changes: 1 addition & 1 deletion faker/__init__.py
Original file line number Diff line number Diff line change
@@ -2,6 +2,6 @@
from faker.generator import Generator
from faker.proxy import Faker

VERSION = "37.0.0"
VERSION = "37.0.1"

__all__ = ("Factory", "Generator", "Faker")
Loading