From 4b1334a192e4638ea42b959e42c783904793c118 Mon Sep 17 00:00:00 2001 From: Reece Dunham Date: Mon, 25 Nov 2019 03:00:52 +0000 Subject: [PATCH] bump version --- changelog.txt | 7 +++++++ setup.py | 6 ++++-- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/changelog.txt b/changelog.txt index 573dc7bf..15f1059c 100644 --- a/changelog.txt +++ b/changelog.txt @@ -5,6 +5,13 @@ Key: + means addition - means deletion +Version 2.11.2: +* Improved documentation a lot more ++ Exposed the "blacklisted" dividers list ++ Added maintainer field to setup.py ++ Added Python version constraints to setup.py to prevent + unsupported Python version installs + Version 2.11.1: + Added API Refrence documentation page * Updated tests to work with new Python version diff --git a/setup.py b/setup.py index 0c86f21f..28066001 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ import setuptools # Package version: -VERSION = "2.11.1" +VERSION = "2.11.2" # Read the long description: with open("README.md", mode="r") as FILE_HANDLER: @@ -68,8 +68,10 @@ setuptools.setup( name="area4", version=VERSION, - author="area4 Team", + author="Reece Dunham", author_email="me@rdil.rocks", + maintainer="area4 Team", + maintainer_email="me@rdil.rocks", description="Dividers in Python, the easy way!", long_description=LONG_DESCRIPTION, long_description_content_type="text/markdown",