pull/339/head 1.8.1
halcy 2023-04-23 21:31:42 +03:00
rodzic 1c444ed035
commit 3d5b94f07f
3 zmienionych plików z 5 dodań i 5 usunięć

Wyświetl plik

@ -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 version number. Breaking changes will be indicated by a change in the minor
(or major) version number, and will generally be avoided. (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) * Replace some lambdas with list comprenehsions (thanks eumiro)
* Add `resolve` keyword to `account_search` (thanks zevaryx) * Add `resolve` keyword to `account_search` (thanks zevaryx)
* Add support for user agent header in `create_app` (thanks jkawamoto) * Add support for user agent header in `create_app` (thanks jkawamoto)

Wyświetl plik

@ -58,7 +58,7 @@ master_doc = 'index'
# General information about the project. # General information about the project.
project = u'Mastodon.py' project = u'Mastodon.py'
copyright = u'2016-2022, Lorenz Diener' copyright = u'2016-2023, Lorenz Diener, Mastodon.py contributors'
author = u'Lorenz Diener' author = u'Lorenz Diener'
# The version info for the project you're documenting, acts as replacement for # 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. # The short X.Y version.
version = u'1.8' version = u'1.8'
# The full version, including alpha/beta/rc tags. # 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 # The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages. # for a list of supported languages.

Wyświetl plik

@ -32,7 +32,7 @@ this_directory = Path(__file__).parent
long_description = (this_directory / "README.rst").read_text() long_description = (this_directory / "README.rst").read_text()
setup(name='Mastodon.py', setup(name='Mastodon.py',
version='1.8.0', version='1.8.1',
description='Python wrapper for the Mastodon API', description='Python wrapper for the Mastodon API',
long_description=long_description, long_description=long_description,
long_description_content_type='text/x-rst', long_description_content_type='text/x-rst',