diff -pruN 1.20.4-1/CHANGELOG.md 1.20.5-1/CHANGELOG.md
--- 1.20.4-1/CHANGELOG.md	2025-02-26 20:08:35.000000000 +0000
+++ 1.20.5-1/CHANGELOG.md	2025-06-07 10:18:52.000000000 +0000
@@ -6,13 +6,20 @@ The format is based on [Keep a Changelog
 and this project adheres to [Semantic Versioning](http://semver.org/).
 
 ## [Unreleased](https://github.com/model-bakers/model_bakery/tree/main)
-
 ### Added
 
 ### Changed
 
 ### Removed
 
+## [1.20.5](https://pypi.org/project/model-bakery/1.20.5/)
+
+### Added
+- Add Django 5.2 support
+
+### Changed
+- Improve documentation
+
 ## [1.20.4](https://pypi.org/project/model-bakery/1.20.4/)
 
 ### Changed
diff -pruN 1.20.4-1/README.md 1.20.5-1/README.md
--- 1.20.4-1/README.md	2025-02-26 20:08:35.000000000 +0000
+++ 1.20.5-1/README.md	2025-06-07 10:18:52.000000000 +0000
@@ -5,76 +5,79 @@
 [![Latest PyPI version](https://img.shields.io/pypi/v/model_bakery.svg)](https://pypi.python.org/pypi/model_bakery/)
 [![Documentation Status](https://readthedocs.org/projects/model-bakery/badge/?version=latest)](https://model-bakery.readthedocs.io/en/latest/?badge=latest)
 
-*Model Bakery* offers you a smart way to create fixtures for testing in
-Django.
-With a simple and powerful API you can create many objects with a single
-line of code.
+*Model Bakery* offers you a smart way to create fixtures for testing in Django. With a simple and powerful API, you can create many objects with a single line of code.
 
-Model Bakery is a rename of the legacy [Model Mommy project](https://pypi.org/project/model_mommy/).
+> **Note:** Model Bakery is a rename of the legacy [Model Mommy project](https://pypi.org/project/model_mommy/).
 
-## Install
+## Installation
 
 ```bash
 pip install model-bakery
 ```
 
-## Usage and Info
-
-### Basic usage
+## Basic usage
 
 ```python
-
 # models.py
-
 from django.db import models
 
 class Customer(models.Model):
-    enjoy_jards_macale = models.BooleanField()
     name = models.CharField(max_length=30)
     email = models.EmailField()
     age = models.IntegerField()
+    is_jards_macale_fan = models.BooleanField()
     bio = models.TextField()
-    days_since_last_login = models.BigIntegerField()
     birthday = models.DateField()
     last_shopping = models.DateTimeField()
 
 # test_models.py
-
 from django.test import TestCase
 from model_bakery import baker
-from pprint import pprint
 
 class TestCustomerModel(TestCase):
     def setUp(self):
         self.customer = baker.make('shop.Customer')
-        pprint(self.customer.__dict__)
+        print(self.customer.__dict__)
 
 """
 {'_state': <django.db.models.base.ModelState object at 0x1129a3240>,
  'age': 3841,
  'bio': 'vUFzMUMyKzlnTyiCxfgODIhrnkjzgQwHtzIbtnVDKflqevczfnaOACkDNqvCHwvtWdLwoiKrCqfppAlogSLECtMmfleeveyqefkGyTGnpbkVQTtviQVDESpXascHAluGHYEotSypSiHvHzFteKIcUebrzUVigiOacfnGdvijEPrZdSCIIBjuXZMaWLrMXyrsUCdKPLRBRYklRdtZhgtxuASXdhNGhDsrnPHrYRClhrSJSVFojMkUHBvSZhoXoCrTfHsAjenCEHvcLeCecsXwXgWJcnJPSFdOmOpiHRnhSgRF',
  'birthday': datetime.date(2019, 12, 3),
- 'enjoy_jards_macale': True,
+ 'email': 'rpNATNsxoj@example.com',
+ 'is_jards_macale_fan': True,
  'id': 1,
  'last_shopping': datetime.datetime(2019, 12, 3, 21, 42, 34, 77019),
- 'name': 'qiayYnESvqcYLLBzxpFOcGBIfnQEPx',
- 'days_since_last_login': 6016}
+ 'name': 'qiayYnESvqcYLLBzxpFOcGBIfnQEPx'}
 """
-
 ```
 
-Check out [documentation](<http://model-bakery.readthedocs.org/>) for more complete examples.
+## Documentation
+
+For more detailed information, check out the [full documentation](https://model-bakery.readthedocs.io/).
 
 ## Contributing
 
-Detailed info [here](https://github.com/model-bakers/model_bakery/blob/main/CONTRIBUTING.md).
+As an open-source project, Model Bakery welcomes contributions of many forms:
+
+- Code patches
+- Documentation improvements
+- Bug reports
+
+Take a look at our [contribution guidelines](CONTRIBUTING.md) for instructions
+on how to set up your local environment.
 
 ## Maintainers
 
-  - [Bernardo Fontes](https://github.com/berinhard/)
-  - [Rustem Saiargaliev](https://github.com/amureki/)
-  - [Tim Klein](https://github.com/timjklein36)
+- [Bernardo Fontes](https://github.com/berinhard/)
+- [Rustem Saiargaliev](https://github.com/amureki/)
+- [Tim Klein](https://github.com/timjklein36)
 
 ## Creator
 
-  - [Vanderson Mota](https://github.com/vandersonmota/)
+- [Vanderson Mota](https://github.com/vandersonmota/)
+
+## License
+
+Model Bakery is licensed under the MIT License.
+See the [LICENSE](LICENSE) file for more information.
diff -pruN 1.20.4-1/debian/changelog 1.20.5-1/debian/changelog
--- 1.20.4-1/debian/changelog	2025-03-02 18:04:57.000000000 +0000
+++ 1.20.5-1/debian/changelog	2025-08-11 10:46:46.000000000 +0000
@@ -1,3 +1,10 @@
+python-model-bakery (1.20.5-1) unstable; urgency=medium
+
+  * Team upload.
+  * New upstream release.
+
+ -- Colin Watson <cjwatson@debian.org>  Mon, 11 Aug 2025 11:46:46 +0100
+
 python-model-bakery (1.20.4-1) unstable; urgency=medium
 
   * Team upload.
diff -pruN 1.20.4-1/docs/index.md 1.20.5-1/docs/index.md
--- 1.20.4-1/docs/index.md	2025-02-26 20:08:35.000000000 +0000
+++ 1.20.5-1/docs/index.md	2025-06-07 10:18:52.000000000 +0000
@@ -4,33 +4,46 @@ Model Bakery offers you a smart way to c
 
 With a simple and powerful API, you can create many objects with a single line of code.
 
-Model Bakery is a rename of the legacy [model_mommy\'s project](https://pypi.org/project/model_mommy/). This is because the project\'s creator and maintainers decided to not reinforce gender stereotypes for women in technology. You can read more about this subject[here](https://witi.com/articles/1017/How-Gender-Stereotypes-are-Still-Affecting-Women-in-Tech/).
+Model Bakery is a rename of the legacy [model_mommy's project](https://pypi.org/project/model_mommy/). This change was made to avoid reinforcing gender stereotypes in technology.
+You can read more about this subject [here](https://witi.com/articles/1017/How-Gender-Stereotypes-are-Still-Affecting-Women-in-Tech/).
 
-# Compatibility
+Documentation: [https://model-bakery.readthedocs.io](https://model-bakery.readthedocs.io)
 
-Model Bakery supports Django \>= 4.2.
+Source code: [https://github.com/model-bakers/model_bakery/](https://github.com/model-bakers/model_bakery/)
 
-# Install
+## Key Features
 
-Install it with `pip`
+- Automatically generates test data for Django models
+- Provides sensible defaults for all field types
+- Supports custom field overrides and "recipes" for reusable patterns
+- Handles related models and complex relationships
+- Works with currently maintained versions of Python and Django
+
+## Installation
 
 ```console
 $ pip install model-bakery
 ```
 
-# Contributing to Model Bakery
+## Contributing to Model Bakery
 
-As an open-source project, Model Bakery welcomes contributions of many forms. Examples of contributions include:
+As an open-source project, Model Bakery welcomes contributions of many forms:
 
-- Code Patches
+- Code patches
 - Documentation improvements
 - Bug reports
 
-Take a look in our [GitHub repo](https://github.com/model-bakers/model_bakery/blob/main/CONTRIBUTING.md) for more instructions on how to set up your local environment to help Model Bakery to grow.
+Take a look at our [GitHub repo](https://github.com/model-bakers/model_bakery/blob/main/CONTRIBUTING.md) for instructions
+on how to set up your local environment.
+
+## Support
+
+Feel free to [open an issue](https://github.com/model-bakers/model_bakery/issues/new) for support, development ideas, or questions!
 
-# Doubts? Loved it? Hated it? Suggestions?
+## License
 
-Feel free to [open an issue](https://github.com/model-bakers/model_bakery/issues/new) for support, development or ideas!
+Model Bakery is licensed under the MIT License.
+See the [LICENSE](https://github.com/model-bakers/model_bakery/blob/main/LICENSE) file for more information.
 
 ## Contents
 
diff -pruN 1.20.4-1/model_bakery/__about__.py 1.20.5-1/model_bakery/__about__.py
--- 1.20.4-1/model_bakery/__about__.py	2025-02-26 20:08:35.000000000 +0000
+++ 1.20.5-1/model_bakery/__about__.py	2025-06-07 10:18:52.000000000 +0000
@@ -1 +1 @@
-__version__ = "1.20.4"
+__version__ = "1.20.5"
diff -pruN 1.20.4-1/model_bakery/baker.py 1.20.5-1/model_bakery/baker.py
--- 1.20.4-1/model_bakery/baker.py	2025-02-26 20:08:35.000000000 +0000
+++ 1.20.5-1/model_bakery/baker.py	2025-06-07 10:18:52.000000000 +0000
@@ -83,7 +83,7 @@ def make(
     _model: Union[str, Type[M]],
     _quantity: None = None,
     make_m2m: bool = False,
-    _save_kwargs: Optional[Dict] = None,
+    _save_kwargs: Optional[Dict[str, Any]] = None,
     _refresh_after_create: bool = False,
     _create_files: bool = False,
     _using: str = "",
@@ -97,7 +97,7 @@ def make(
     _model: Union[str, Type[M]],
     _quantity: int,
     make_m2m: bool = False,
-    _save_kwargs: Optional[Dict] = None,
+    _save_kwargs: Optional[Dict[str, Any]] = None,
     _refresh_after_create: bool = False,
     _create_files: bool = False,
     _using: str = "",
@@ -111,7 +111,7 @@ def make(
     _model,
     _quantity: Optional[int] = None,
     make_m2m: bool = False,
-    _save_kwargs: Optional[Dict] = None,
+    _save_kwargs: Optional[Dict[str, Any]] = None,
     _refresh_after_create: bool = False,
     _create_files: bool = False,
     _using: str = "",
@@ -155,7 +155,7 @@ def prepare(
     _quantity: None = None,
     _save_related: bool = False,
     _using: str = "",
-    **attrs,
+    **attrs: Any,
 ) -> M: ...
 
 
@@ -166,7 +166,7 @@ def prepare(
     _save_related: bool = False,
     _using: str = "",
     _fill_optional: Union[List[str], bool] = False,
-    **attrs,
+    **attrs: Any,
 ) -> List[M]: ...
 
 
@@ -176,7 +176,7 @@ def prepare(
     _save_related: bool = False,
     _using: str = "",
     _fill_optional: Union[List[str], bool] = False,
-    **attrs,
+    **attrs: Any,
 ):
     """Create but do not persist an instance from a given model.
 
diff -pruN 1.20.4-1/pyproject.toml 1.20.5-1/pyproject.toml
--- 1.20.4-1/pyproject.toml	2025-02-26 20:08:35.000000000 +0000
+++ 1.20.5-1/pyproject.toml	2025-06-07 10:18:52.000000000 +0000
@@ -25,6 +25,7 @@ classifiers = [
     "Framework :: Django :: 4.2",
     "Framework :: Django :: 5.0",
     "Framework :: Django :: 5.1",
+    "Framework :: Django :: 5.2",
     "Intended Audience :: Developers",
     "License :: OSI Approved :: Apache Software License",
     "Operating System :: OS Independent",
diff -pruN 1.20.4-1/tox.ini 1.20.5-1/tox.ini
--- 1.20.4-1/tox.ini	2025-02-26 20:08:35.000000000 +0000
+++ 1.20.5-1/tox.ini	2025-06-07 10:18:52.000000000 +0000
@@ -1,10 +1,10 @@
 [tox]
 env_list =
     py{38,39}-django{42}-{postgresql,sqlite}
-    py{310,311}-django{42,50,51}-{postgresql,sqlite}
-    py{311,312}-django{42,50,51}-{postgresql-psycopg3}
-    py312-django{50,51}-{postgresql-contenttypes}
-    py313-django{50,51}-{sqlite,postgresql-psycopg3,postgresql-contenttypes}
+    py{310,311}-django{42,50,51,52}-{postgresql,sqlite}
+    py{311,312}-django{42,50,51,52}-{postgresql-psycopg3}
+    py312-django{50,51,52}-{postgresql-contenttypes}
+    py313-django{50,51,52}-{sqlite,postgresql-psycopg3,postgresql-contenttypes}
 
 [testenv]
 package = wheel
@@ -30,6 +30,7 @@ deps =
     django42: Django>=4.2,<5
     django50: Django>=5.0,<5.1
     django51: Django>=5.1,<5.2
+    django52: Django>=5.2,<5.3
     postgresql: psycopg2-binary
     postgresql-psycopg3: psycopg
     postgresql-contenttypes: psycopg
