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 19, 2022
1 parent 3b444e4 commit fd684d0
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 10 deletions.
15 changes: 8 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
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.1.1"
__version__ = "2.1.2"

import logging
from typing import Literal, NamedTuple
Expand Down Expand Up @@ -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())
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.1.1"
version = "2.1.2"
description = "An asynchronous wrapper around the MangaDex v5 API"
authors = ["Alex Nørgaard <Umbra@AbstractUmbra.dev>"]

Expand Down

0 comments on commit fd684d0

Please sign in to comment.