corrected documentation

This commit is contained in:
matthewhegarty 2025-10-19 18:27:26 +01:00
parent 6e89f0e167
commit 2ad9bf8807
2 changed files with 14 additions and 1 deletions

View File

@ -46,6 +46,19 @@ so if another branch is used, then the documentation will be incomplete.
The `release` github workflow will run and publish the release binaries to both test.pypi.org and pypi.org. The `release` github workflow will run and publish the release binaries to both test.pypi.org and pypi.org.
#### Release from a different branch
Ensure that feature branches are merged and that the changelog is up-to-date as required.
To release from a feature branch (e.g. 'rel/4-x'):
1. Ensure that the branch is up-to-date locally (`git pull upstream rel/4-x`)
2. Tag the branch as required (`git tag -a 2.29.2 -m "v4.3.11"`)
3. Push tags (`git push --tags upstream`)
Now release as above but use the appropriate git tag.
Remember to merge the release branch into the `main` branch.
### Check readthedocs ### Check readthedocs
[readthedocs](https://readthedocs.org/projects/django-import-export/) integration is used to publish documentation. [readthedocs](https://readthedocs.org/projects/django-import-export/) integration is used to publish documentation.

View File

@ -5,7 +5,7 @@ Changelog
If upgrading from v3, v4 introduces breaking changes. Please refer to :doc:`release notes<release_notes>`. If upgrading from v3, v4 introduces breaking changes. Please refer to :doc:`release notes<release_notes>`.
4.3.11 (unreleased) 4.3.11 (2025-10-18)
------------------- -------------------
- Fix for export not retaining URI query params (`2097 <https://github.com/django-import-export/django-import-export/pull/2097>`_) - Fix for export not retaining URI query params (`2097 <https://github.com/django-import-export/django-import-export/pull/2097>`_)