From 7bf78c3de40ef3e7845d91e49bdfc2c1d209a312 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20N=C3=B8rgaard?= Date: Thu, 31 Mar 2022 19:05:51 +0100 Subject: [PATCH] version bump and changelog --- CHANGELOG.md | 14 ++++++++++---- hondana/__init__.py | 4 ++-- pyproject.toml | 2 +- 3 files changed, 13 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b120b3a..66ff987 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,17 +1,23 @@ -2.2.0 +2.2.1 -API Version 5.5.7! +API Version 5.5.8! # Hondana Changelog ## Added +- `Client.get_my_custom_list_follows()` method was added to get all of the custom lists you follow. (44d6374089680e9fc703d2a3bffeeaa6dcdfa0c6) +- `Client.check_if_following_custom_list()` method was added to check if you currentlt follow a specific custom list. (44d6374089680e9fc703d2a3bffeeaa6dcdfa0c6) +- `Client.follow_custom_list()` and `CustomList.follow()` methods were added to allow you to follow a custom list. (44d6374089680e9fc703d2a3bffeeaa6dcdfa0c6) +- `Client.unfollow_custom_list()` and `CustomList.unfollow()` methods were added to allow you to unfollow a custom list. (44d6374089680e9fc703d2a3bffeeaa6dcdfa0c6) ## Changes -- This release is purely an optimization change, all commits between the last release and now (fd684d0bccac3b91c735a2310931f602ba7bc82a..b304a96d51f143aebe76c2c8816d6345a7b70117) were purely for these reasons. +- `ChapterUpload` will now raise `ValueError` on initialisation if you try to provide more than 10 scanlator groups per upload. (5861a32f2e20360ea32f14eb0baee49223e9dd7e) +- Added optional `[speedup]` extra to the library install to add `orjson` as a dependency for faster json payload parsing. (96507e0c9dec67f0fca6417cb2b12e6bf566e1d9) +- Removed the dependency for `aiofiles` as the overhead was rather unnecessary in testing. (fe9501a8fffcba631cc7ee1820052f1b69ad2b9b) ## Fixes ### Notes +- `Client.view_manga` is marked as deprecated and due for removal in version 3.0 in favour of `Client.get_manga`. ### Noted Contributors -@Axelancerr - cleaning up my bad grammar all year 'round. diff --git a/hondana/__init__.py b/hondana/__init__.py index ae58049..dfe1cda 100644 --- a/hondana/__init__.py +++ b/hondana/__init__.py @@ -26,7 +26,7 @@ __author__ = "AbstractUmbra" __license__ = "MIT" __copyright__ = "Copyright 2021-present AbstractUmbra" -__version__ = "2.2.0" +__version__ = "2.2.1" import logging from typing import Literal, NamedTuple @@ -63,6 +63,6 @@ class VersionInfo(NamedTuple): serial: int -version_info: VersionInfo = VersionInfo(major=2, minor=2, micro=0, releaselevel="final", serial=0) +version_info: VersionInfo = VersionInfo(major=2, minor=2, micro=1, releaselevel="final", serial=0) logging.getLogger(__name__).addHandler(logging.NullHandler()) diff --git a/pyproject.toml b/pyproject.toml index 0caa780..fbc3fba 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "Hondana" -version = "2.2.0" +version = "2.2.1" description = "An asynchronous wrapper around the MangaDex v5 API" authors = ["Alex Nørgaard "]