Skip to content

Commit 0cf7cfa

Browse files
halcyhalcy
authored andcommitted
get ready to tag release
1 parent 0f775f5 commit 0cf7cfa

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed

CHANGELOG.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@ A note on versioning: This librarys major version will grow with the APIs
22
version number. Breaking changes will be indicated by a change in the minor
33
(or major) version number, and will generally be avoided.
44

5+
v2.0.1
6+
------
7+
Maintenance release. Fixes a few minor, but important, issues
8+
* Remove spurious debug prints (Thanks aitorres)
9+
* Fix pagination fetch_remaining being broken due to typing changes (Thanks jikamens)
10+
* Fix pagination result parsing due to typing changes (Thanks hashier for the report)
11+
* Fix pagination information not being saved with to/from_json functions
12+
513
v2.0.0
614
------
715
* 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.

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,9 @@
6666
# built documents.
6767
#
6868
# The short X.Y version.
69-
version = u'1.8'
69+
version = u'2.0'
7070
# The full version, including alpha/beta/rc tags.
71-
release = u'1.8.1'
71+
release = u'2.0.1'
7272

7373
# The language for content autogenerated by Sphinx. Refer to documentation
7474
# for a list of supported languages.

mastodon/Mastodon.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ class Mastodon(MastoUtility, MastoAuthentication, MastoAccounts, MastoInstance,
7373
"""
7474
# Support level
7575
__SUPPORTED_MASTODON_VERSION = "4.3.0"
76-
__MASTODON_PY_VERSION = "2.0.0"
76+
__MASTODON_PY_VERSION = "2.0.1"
7777

7878
@staticmethod
7979
def get_supported_version() -> str:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend= "setuptools.build_meta"
44

55
[project]
66
name = "Mastodon.py"
7-
version = "2.0.0"
7+
version = "2.0.1"
88
description = "Python wrapper for the Mastodon API"
99
readme = "README.rst"
1010
authors = [

0 commit comments

Comments
 (0)