From 87863d3eeb0873d8f03521cf101e4893c964be59 Mon Sep 17 00:00:00 2001 From: Oleksandr Shtalinberg Date: Wed, 20 Nov 2024 15:27:46 +0000 Subject: [PATCH] changes for Version 4.1.1 locally --- PKG-INFO | 2 +- doc/changelog.rst | 5 +++++ el_pagination/__init__.py | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/PKG-INFO b/PKG-INFO index 40c6ef0..0340e57 100644 --- a/PKG-INFO +++ b/PKG-INFO @@ -1,6 +1,6 @@ Metadata-Version: 1.2 Name: django-el-pagination -Version: 4.1.0 +Version: 4.1.1 Summary: Django pagination tools supporting Ajax, multiple and lazy pagination, Twitter-style and Digg-style pagination. Home-page: https://github.com/shtalinberg/django-el-pagination Author: Oleksandr Shtalinberg diff --git a/doc/changelog.rst b/doc/changelog.rst index bff5399..cb0b849 100644 --- a/doc/changelog.rst +++ b/doc/changelog.rst @@ -1,6 +1,11 @@ Changelog ========= +Version 4.1.1 +~~~~~~~~~~~~~ + +**Fix**: fixed readthedocs documentation + Version 4.1.0 ~~~~~~~~~~~~~ diff --git a/el_pagination/__init__.py b/el_pagination/__init__.py index 14eb6db..699eb69 100644 --- a/el_pagination/__init__.py +++ b/el_pagination/__init__.py @@ -2,7 +2,7 @@ Twitter-style and Digg-style pagination. """ -VERSION = (4, 1, 0) +VERSION = (4, 1, 1) __version__ = '.'.join(map(str, VERSION)) def get_version():