Skip to content

Commit

Permalink
version bump and changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
AbstractUmbra committed Mar 31, 2022
1 parent 44d6374 commit 7bf78c3
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 7 deletions.
14 changes: 10 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
4 changes: 2 additions & 2 deletions hondana/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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())
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]

Expand Down

0 comments on commit 7bf78c3

Please sign in to comment.