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 11, 2022
1 parent 18434dc commit a9989e2
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,20 @@
2.0.11
2.0.12

API Version 5.5.6!

# Hondana Changelog

## Added
- Add `Client.get_manga` method to be more consistent with the rest of the Client methods, see notes below. (588c2fdc2956db5435c2aa5792281d3a78ef7396)
- `hondana.Relationship` type was added as a container type to relationship keys in payloads. (684447e75088302d42ca803ca31eee190a4aafdd)
- Added `.relationship` property to all relevant types to use the new `Relationship` container. (8d2c7584879a14a0e47fdcbe23497efe1ac8b7e7)

## Changes
- `Client.dump_refresh_token` is now kwarg only, and now accepts a `file` kwarg, which controls if it dumps to a file or not. (c5a348eaeb1a650c5ddd3efc29b3cdd8a3899772)
- Reworked internals of `Client.update_tags` to use the new `Client.get_tags`. (f4dc77aab922e8a33537be09af80763a1d40171d)

## Fixes
- Rare case where `Manga.description` can `AttributeError` due to PHP-isms. (6bc91d03ca10052038397205e8bced35734434fe)
- Add extra layer of http request handling. (18434dcd3be880660828dd3d3503f74c926fe1de)

### 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)
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.0.11"
__version__ = "2.0.12"

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=0, micro=11, releaselevel="final", serial=0)
version_info: VersionInfo = VersionInfo(major=2, minor=0, micro=12, 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.0.11"
version = "2.0.12"
description = "An asynchronous wrapper around the MangaDex v5 API"
authors = ["Alex Nørgaard <Umbra@AbstractUmbra.dev>"]

Expand Down

0 comments on commit a9989e2

Please sign in to comment.