Skip to content

Commit

Permalink
version bump and chagelog
Browse files Browse the repository at this point in the history
  • Loading branch information
AbstractUmbra committed Feb 23, 2022
1 parent 2b34ad1 commit a85d207
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
10 changes: 6 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
2.0.8
2.0.9

API Version 5.5.3!
API Version 5.5.4!

# Hondana Changelog
**Fix release.**

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

## Changes

## Fixes
- `version` kwarg in `Manga.submit_draft` and `Client.submit_manga_draft` is now required. (c430eeed2174298618cc436aeb2405ce5b9ff65a)
- `Client.get_manga_statistics` and `Client.find_manga_statistics` does not require auth. (9f1d6df5218916477131c0462f807010dc2b2b89)
- Cleanup some issues in the `use_logging.py` example. (fd4e419dc68169f67637ddd5c0cd0fc0cd04b490)
- Types of `MangaStatistics.distribution` were wrong, this has been corrected. (Thanks Pokestar) (2b34ad1bab994d84681cf507d8e8d9e2af4c94c1)

### 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.8"
__version__ = "2.0.9"

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

Expand Down

0 comments on commit a85d207

Please sign in to comment.