Skip to content

Commit

Permalink
Prepare for release
Browse files Browse the repository at this point in the history
  • Loading branch information
patrick91 committed Jul 1, 2024
1 parent 8ea96d4 commit 910fb3b
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 21 deletions.
13 changes: 10 additions & 3 deletions CHANGELOG.md
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
38 changes: 20 additions & 18 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
],
)

0 comments on commit 910fb3b

Please sign in to comment.