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 3, 2022
1 parent 2f6f018 commit 61e1f2f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 9 deletions.
10 changes: 4 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,15 @@
2.0.9
2.0.10

API Version 5.5.4!
API Version 5.5.6!

# Hondana Changelog

## Added
- Added `content_rating` kwarg to `Client.get_random_manga()`. (2f6f018316424b2fa2e13d672747982308936e7d)

## 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)
- Types of `MangaStatistics.average` were wrong, this has been corrected. (Thanks Pokestar) (fee0a4993669153cdcf22d88af9002bd482c724e)

### 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.9"
__version__ = "2.0.10"

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

Expand Down

0 comments on commit 61e1f2f

Please sign in to comment.