From 910fb3b917629cdc5ca987d2241e36832077411f Mon Sep 17 00:00:00 2001 From: Patrick Arminio Date: Mon, 1 Jul 2024 18:33:23 +0200 Subject: [PATCH] Prepare for release --- CHANGELOG.md | 13 ++++++++++--- setup.py | 38 ++++++++++++++++++++------------------ 2 files changed, 30 insertions(+), 21 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 27fbb56..f2dad6d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,5 @@ # Changelog + All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), @@ -6,15 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.0] - 2022-12-07 + +- Added support for async querysets by @bradleyoesch https://github.com/photocrowd/django-cursor-pagination/pull/49 + ## [0.2.1] - 2022-12-07 ### Added + - Added support for NULL value ordering by @untidy-hair https://github.com/photocrowd/django-cursor-pagination/pull/45 - - Fixes https://github.com/photocrowd/django-cursor-pagination/issues/44 - - Fixes https://github.com/photocrowd/django-cursor-pagination/issues/18 + - Fixes https://github.com/photocrowd/django-cursor-pagination/issues/44 + - Fixes https://github.com/photocrowd/django-cursor-pagination/issues/18 - Added Python 3.11 to test matrix ## [0.2.0] - 2022-07-07 ### Added -- Support for different ordering in different directions by @yeahframeoff https://github.com/photocrowd/django-cursor-pagination/pull/27 \ No newline at end of file + +- Support for different ordering in different directions by @yeahframeoff https://github.com/photocrowd/django-cursor-pagination/pull/27 diff --git a/setup.py b/setup.py index f97ed3c..1a55cc5 100644 --- a/setup.py +++ b/setup.py @@ -6,26 +6,28 @@ setup( - name='django-cursor-pagination', - py_modules=['cursor_pagination'], - version='0.2.1', - description='Cursor based pagination for Django', + name="django-cursor-pagination", + py_modules=["cursor_pagination"], + version="0.3.0", + description="Cursor based pagination for Django", long_description=long_description, long_description_content_type="text/markdown", - author='Photocrowd', - author_email='devteam@photocrowd.com', - url='https://github.com/photocrowd/django-cursor-pagination', - license='BSD', + author="Photocrowd", + author_email="devteam@photocrowd.com", + url="https://github.com/photocrowd/django-cursor-pagination", + license="BSD", classifiers=[ - 'Development Status :: 2 - Pre-Alpha', - 'Framework :: Django', - 'Intended Audience :: Developers', - 'License :: OSI Approved :: BSD License', - 'Natural Language :: English', - 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.7', - 'Programming Language :: Python :: 3.8', - 'Programming Language :: Python :: 3.9', - 'Programming Language :: Python :: 3.10', + "Development Status :: 5 - Production/Stable", + "Framework :: Django", + "Intended Audience :: Developers", + "License :: OSI Approved :: BSD License", + "Natural Language :: English", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", ], )