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 Feb 21, 2022
1 parent f26e49f commit 7bd8e01
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 16 deletions.
16 changes: 3 additions & 13 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,25 +1,15 @@
2.0.7
2.0.8

API Version 5.5.2!
API Version 5.5.3!

# Hondana Changelog
**Fix release.**

## Added
- `Manga.available_translated_languages` was added, a list of LanguageCode this manga has chapters translated for. (f26e49f22c03085aac06866bb108e72885e379a1)

## Changes
- Added `__repr__` to more objects for clarity if required. (d154ee298622adc5543039703bb96f05c1c81896)
- Rework exceptions internally because of DRY. (3eeb9feca5dc0277e02c765f9a085fb003be3faf)
- Exceptions now have a `.errors` attribute that is a list of `Error` sentinel types for ease of readability and access. (3eeb9feca5dc0277e02c765f9a085fb003be3faf)
- Add `response_id` attribute to Exceptions and add notes on their use in reporting errors to MangaDex. (a8af0d5fed061b155417c53baa18c7fea6949626)
- Added some notes to example and docs about using `DEBUG` level logging. (e26072ce1c321be6ce5b81f64e841e86d4e719cb)
- Performance change for `Manga.tags` where the property doesn't exist until accessed. (24cf17806adc3f1e9833433fa5e6da2cdd718388)
- The above opens us up for further changes to these things where an objects creation would be less performance.
-

## Fixes
- Some typos in docs. (6265e8b59d3fd5c83b193888f5ae1847b9b95421)
- Actually create the enum type in `Manga.__init__`. (33d2517f73c38f49128114e52ff30c8ed9ffb0de)
- Token refresh datetime math was a little off, this has been fixed and renamed for ease of understanding. (fae516ac44f47d36a31dd4390c632ab803411575)

### Notes
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.7"
__version__ = "2.0.8"

import logging
from typing import Literal, NamedTuple
Expand Down Expand Up @@ -62,6 +62,6 @@ class VersionInfo(NamedTuple):
serial: int


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

Expand Down

0 comments on commit 7bd8e01

Please sign in to comment.