get ready to tag release

pull/400/head
halcy 2025-03-02 11:33:34 +02:00
rodzic 0f775f5fe1
commit 0cf7cfa8e6
4 zmienionych plików z 12 dodań i 4 usunięć

Wyświetl plik

@ -2,6 +2,14 @@ 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.
v2.0.1
------
Maintenance release. Fixes a few minor, but important, issues
* Remove spurious debug prints (Thanks aitorres)
* Fix pagination fetch_remaining being broken due to typing changes (Thanks jikamens)
* Fix pagination result parsing due to typing changes (Thanks hashier for the report)
* Fix pagination information not being saved with to/from_json functions
v2.0.0
------
* Absolutely massive rework of entities and typing. There are now proper classes for all entities, and typing is now used throughout the library. There is an attempt here to be backwards compatible, and none of my *tests* break.

Wyświetl plik

@ -66,9 +66,9 @@ author = u'Lorenz Diener'
# built documents.
#
# The short X.Y version.
version = u'1.8'
version = u'2.0'
# The full version, including alpha/beta/rc tags.
release = u'1.8.1'
release = u'2.0.1'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.

Wyświetl plik

@ -73,7 +73,7 @@ class Mastodon(MastoUtility, MastoAuthentication, MastoAccounts, MastoInstance,
"""
# Support level
__SUPPORTED_MASTODON_VERSION = "4.3.0"
__MASTODON_PY_VERSION = "2.0.0"
__MASTODON_PY_VERSION = "2.0.1"
@staticmethod
def get_supported_version() -> str:

Wyświetl plik

@ -4,7 +4,7 @@ build-backend= "setuptools.build_meta"
[project]
name = "Mastodon.py"
version = "2.0.0"
version = "2.0.1"
description = "Python wrapper for the Mastodon API"
readme = "README.rst"
authors = [