From 6be390e1c021c0ea6d85df3e9cc2012942a0d4c6 Mon Sep 17 00:00:00 2001 From: shortcuts Date: Wed, 27 Nov 2024 13:56:20 +0100 Subject: [PATCH] chore: review --- .github/PULL_REQUEST_TEMPLATE.md | 2 +- MAINTAINERS.md | 6 +++--- setup.py | 3 ++- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 3e0f401..6894e86 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -1,6 +1,6 @@ ## 🧭 What and Why -🎟 JIRA Ticket: +🎟 Related Issue: ### Changes included: diff --git a/MAINTAINERS.md b/MAINTAINERS.md index 0091440..ab0e2c7 100644 --- a/MAINTAINERS.md +++ b/MAINTAINERS.md @@ -1,5 +1,5 @@ ## `algolia/algoliasearch-django` maintainers -| Name | Email | -|-----------------|---------------------| -| Algolia | support@algolia.com | +| Name | Email | +|-----------------|------------------------| +| Algolia | https://alg.li/support | diff --git a/setup.py b/setup.py index 69affeb..6b1e5dc 100644 --- a/setup.py +++ b/setup.py @@ -5,6 +5,7 @@ from setuptools import setup from setuptools import find_packages +from algoliasearch_django.version import VERSION # Allow setup.py to be run from any path @@ -30,7 +31,7 @@ setup( name="algoliasearch-django", - version="4.0.0", + version=VERSION, license="MIT License", packages=find_packages(exclude=["tests"]), install_requires=["django>=4.0"],