Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@
<img alt="Django Select2: Custom autocomplete fields for Django" src="https://github.com/codingjoe/django-select2/raw/main/images/logo-light.svg">
</picture>
<br>
<a href="https://django-select2.rtfd.io">Documentation</a>
<a href="https://django-select2.rtfd.io">Documentation</a> |
<a href="https://github.com/codingjoe/django-select2/issues/new/choose">Issues</a> |
<a href="https://github.com/codingjoe/django-select2/releases">Changelog</a> |
<a href="https://github.com/sponsors/codingjoe">Funding</a> 💚
</p>

# Django-Select2
Expand Down
17 changes: 13 additions & 4 deletions docs/index.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
################
Django Select2
################

.. image:: https://github.com/codingjoe/django-select2/raw/main/images/logo-light.svg
:align: center
:alt: Django Select2: Custom autocomplete fields for Django
Expand All @@ -12,6 +8,19 @@
:alt: Django Select2: Custom autocomplete fields for Django
:class: only-dark

################
Django Select2
################

*Custom autocomplete fields for Django.*

`Documentation`_ | `Issues`_ | `Changelog`_ | `Funding`_ 💚

.. _documentation: https://django-select2.rtfd.io/
.. _issues: https://github.com/codingjoe/django-select2/issues/new/choose
.. _changelog: https://github.com/codingjoe/django-select2/releases
.. _funding: https://github.com/sponsors/codingjoe

**************
Installation
**************
Expand Down
7 changes: 5 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,14 @@ docs = [
]

[project.urls]
Project-URL = "https://github.com/codingjoe/django-select2"
# https://packaging.python.org/en/latest/specifications/well-known-project-urls/#well-known-labels
Homepage = "https://github.com/codingjoe/django-select2"
Changelog = "https://github.com/codingjoe/django-select2/releases"
Source = "https://github.com/codingjoe/django-select2"
Releasenotes = "https://github.com/codingjoe/django-select2/releases/latest"
Copy link

Copilot AI Dec 18, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The key "Releasenotes" should be "Release Notes" (two words with proper capitalization) according to Python packaging well-known project URL labels. The standard well-known label for this purpose is "Release Notes", not "Releasenotes".

Suggested change
Releasenotes = "https://github.com/codingjoe/django-select2/releases/latest"
"Release Notes" = "https://github.com/codingjoe/django-select2/releases/latest"

Copilot uses AI. Check for mistakes.
Copy link

Copilot AI Dec 18, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The URL for "Releasenotes" points to "/releases/latest" while the "Changelog" URL points to "/releases". This creates redundancy since both are essentially pointing to the same releases page. Consider removing one of these entries or making their purposes more distinct. If you want to keep both, the "Releasenotes" entry should point to the latest specific release, while "Changelog" should point to all releases.

Suggested change
Releasenotes = "https://github.com/codingjoe/django-select2/releases/latest"

Copilot uses AI. Check for mistakes.
Documentation = "https://django-select2.rtfd.io/"
Issue-Tracker = "https://github.com/codingjoe/django-select2/issues"
Issues = "https://github.com/codingjoe/django-select2/issues"
Funding = "https://github.com/sponsors/codingjoe"

[tool.flit.module]
name = "django_select2"
Expand Down