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 19, 2022
1 parent b304a96 commit b1857ec
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 9 deletions.
8 changes: 2 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
2.1.2
2.2.0

API Version 5.5.7!

Expand All @@ -7,15 +7,11 @@ API Version 5.5.7!
## Added

## Changes
- This release is purely an optimization change, all commits between the last release and now (fd684d0bccac3b91c735a2310931f602ba7bc82a..b304a96d51f143aebe76c2c8816d6345a7b70117) were purely for these reasons.

## Fixes
- `ScanlatorGroup.publish_delay` is now (correctly) Optional. (2ae4806997cae6e54e785c4e6e906ffd6a9032f3)
- New utility added and utilised for sending datetimes to mangadex. It now cleans and coverts them to UTC from aware timezones. (11ff66854a82168a2fa0bce104f82d7fb63469f4)
- `Cover.url` now supports passing a parent manga id, as it is generally a "sub-relationship" meaning it has no relationships to parse for the parent manga. (802795d9f92a3d06e0e1bcb21d1602a6ad0c3b67)

### Notes
- `Client.view_manga` method has been marked as deprecated in favour of `Client.view_manga` and will be removed in version 3.0. (588c2fdc2956db5435c2aa5792281d3a78ef7396)
- Due to this being a fix release, there is some pending internal changes that are not fully implemented across the board.

### 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.1.2"
__version__ = "2.2.0"

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=1, micro=2, releaselevel="final", serial=0)
version_info: VersionInfo = VersionInfo(major=2, minor=2, micro=0, 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.1.2"
version = "2.2.0"
description = "An asynchronous wrapper around the MangaDex v5 API"
authors = ["Alex Nørgaard <[email protected]>"]

Expand Down

0 comments on commit b1857ec

Please sign in to comment.