-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
30 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,27 @@ | ||
# 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/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [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 | ||
|
||
- Support for different ordering in different directions by @yeahframeoff https://github.com/photocrowd/django-cursor-pagination/pull/27 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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='[email protected]', | ||
url='https://github.com/photocrowd/django-cursor-pagination', | ||
license='BSD', | ||
author="Photocrowd", | ||
author_email="[email protected]", | ||
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", | ||
], | ||
) |