From 3d5b94f07fab53d64e03fadb68b92eec496cbe13 Mon Sep 17 00:00:00 2001 From: halcy Date: Sun, 23 Apr 2023 21:31:42 +0300 Subject: [PATCH] Prep release --- CHANGELOG.rst | 4 ++-- docs/conf.py | 4 ++-- setup.py | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 7609e05..fc2e4b5 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,8 +2,8 @@ A note on versioning: This librarys major version will grow with the APIs version number. Breaking changes will be indicated by a change in the minor (or major) version number, and will generally be avoided. -v1.8.1 (in progress) --------------------- +v1.8.1 +------ * Replace some lambdas with list comprenehsions (thanks eumiro) * Add `resolve` keyword to `account_search` (thanks zevaryx) * Add support for user agent header in `create_app` (thanks jkawamoto) diff --git a/docs/conf.py b/docs/conf.py index 55a6944..c64fa4f 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -58,7 +58,7 @@ master_doc = 'index' # General information about the project. project = u'Mastodon.py' -copyright = u'2016-2022, Lorenz Diener' +copyright = u'2016-2023, Lorenz Diener, Mastodon.py contributors' author = u'Lorenz Diener' # The version info for the project you're documenting, acts as replacement for @@ -68,7 +68,7 @@ author = u'Lorenz Diener' # The short X.Y version. version = u'1.8' # The full version, including alpha/beta/rc tags. -release = u'1.8.0' +release = u'1.8.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index 6c88105..886cb0a 100644 --- a/setup.py +++ b/setup.py @@ -32,7 +32,7 @@ this_directory = Path(__file__).parent long_description = (this_directory / "README.rst").read_text() setup(name='Mastodon.py', - version='1.8.0', + version='1.8.1', description='Python wrapper for the Mastodon API', long_description=long_description, long_description_content_type='text/x-rst',