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 Dec 27, 2021
1 parent 49cb1f0 commit 7e85c78
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 8 deletions.
12 changes: 7 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,19 @@
1.1.2
1.1.3

API Version: 5.4.3

# Hondana Changelog

## Added
- `Author.weibo` and `Author.naver` attributes. (a20df568727333bb224b89d27e25f02a309bdd48)
- `Artist.weibo` and `Artist.naver` attributes. (a20df568727333bb224b89d27e25f02a309bdd48)

- `Client.get_manga_relation_list` and `Manga.get_relations` now support the `includes` parameter. (2fa2c3a3a9e08ad1faae3186360d41a0febf88bd)
- `Client.set_manga_rating` and `Manga.set_rating` added. (49cb1f03c621bb64d7ea6ccf5ac2e9fc202e4925)
- `Client.delete_manga_rating` and `Manga.delete_rating` added. (49cb1f03c621bb64d7ea6ccf5ac2e9fc202e4925)
- `Client.get_manga_statistics` added. (49cb1f03c621bb64d7ea6ccf5ac2e9fc202e4925)

## Changes


## Fixes
- Fix `HTTPClient._update_author` endpoint to use correct HTTP verb... (1de2824b7b98a6545a7827be07cdb4351d12c45f)


### 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__ = "1.1.2"
__version__ = "1.1.3"

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


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

Expand Down

0 comments on commit 7e85c78

Please sign in to comment.