From fd684d0bccac3b91c735a2310931f602ba7bc82a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20N=C3=B8rgaard?= Date: Sat, 19 Mar 2022 12:19:12 +0000 Subject: [PATCH] version bump and changelog --- CHANGELOG.md | 15 ++++++++------- hondana/__init__.py | 4 ++-- pyproject.toml | 2 +- 3 files changed, 11 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 57dd4c5..a8aa2ec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,20 +1,21 @@ -2.1.1 +2.1.2 API Version 5.5.7! # Hondana Changelog ## Added -- Added `Client.check_username_available` method as per the new endpoint. (9dee5bc9e96ce5f3dbce5290a2281914275518c2) -- Added base implementations for "Settings" section of API docs. (f99430038c445655ac8f441f0afc010adb4dca23) - - Not fully released so implementation is barebones and in need of a nicer interface, blocked on full release. ## Changes -- Internal change to how the `limit` parameter works, now that `0` is an allowed minimum value. (6719705eb7a74fa09347b9bde7d8787a3aa5d3c3) -- Updated `hondana.types.Manga.MangaLinks` type to include missing keys and added descriptions. (1d205d09886985040a8c1d28356ba2c7298896f9) -- `Manga.status` is no longer nullable or null. (6f7e2905d9ba489f0f2537e664d3016e92bde027 and 2323c44b5aa75ea04e53abafd67b9b75d7833898) ## Fixes +- `ScanlatorGroup.publish_delay` is now (correctly) Optional. (2ae4806997cae6e54e785c4e6e906ffd6a9032f3) +- New utility added and utilised for sending datetimes to mangadex. It now cleans and coverts them to UTC from aware timezones. (11ff66854a82168a2fa0bce104f82d7fb63469f4) +- `Cover.url` now supports passing a parent manga id, as it is generally a "sub-relationship" meaning it has no relationships to parse for the parent manga. (802795d9f92a3d06e0e1bcb21d1602a6ad0c3b67) ### Notes - `Client.view_manga` method has been marked as deprecated in favour of `Client.view_manga` and will be removed in version 3.0. (588c2fdc2956db5435c2aa5792281d3a78ef7396) +- Due to this being a fix release, there is some pending internal changes that are not fully implemented across the board. + +### Noted Contributors +@Axelancerr - cleaning up my bad grammar all year 'round. diff --git a/hondana/__init__.py b/hondana/__init__.py index fb4cddb..0d6f5e4 100644 --- a/hondana/__init__.py +++ b/hondana/__init__.py @@ -26,7 +26,7 @@ __author__ = "AbstractUmbra" __license__ = "MIT" __copyright__ = "Copyright 2021-present AbstractUmbra" -__version__ = "2.1.1" +__version__ = "2.1.2" import logging from typing import Literal, NamedTuple @@ -63,6 +63,6 @@ class VersionInfo(NamedTuple): serial: int -version_info: VersionInfo = VersionInfo(major=2, minor=1, micro=1, releaselevel="final", serial=0) +version_info: VersionInfo = VersionInfo(major=2, minor=1, micro=2, releaselevel="final", serial=0) logging.getLogger(__name__).addHandler(logging.NullHandler()) diff --git a/pyproject.toml b/pyproject.toml index 147214c..6da3e28 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "Hondana" -version = "2.1.1" +version = "2.1.2" description = "An asynchronous wrapper around the MangaDex v5 API" authors = ["Alex Nørgaard "]