From 7e85c78d2fe506db045b2506551e9faa7453e434 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20N=C3=B8rgaard?= Date: Mon, 27 Dec 2021 00:47:09 +0000 Subject: [PATCH] version bump and changelog --- CHANGELOG.md | 12 +++++++----- hondana/__init__.py | 4 ++-- pyproject.toml | 2 +- 3 files changed, 10 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e9a530d..45b4a2c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/hondana/__init__.py b/hondana/__init__.py index 5cf7d39..22f6e85 100644 --- a/hondana/__init__.py +++ b/hondana/__init__.py @@ -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 @@ -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()) diff --git a/pyproject.toml b/pyproject.toml index 5ca20ed..e679eeb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 "]