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 Apr 14, 2022
1 parent d5aba0f commit f66e9e5
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,20 +1,18 @@
3.0.0
3.0.1

API Version 5.5.8!

# Hondana Changelog

## Added
- `hondana.UploadData` was added as the return type for `ChapterUpload.upload_images` to provide more access to error and success information. (99a7a37c68cebc86094cb1082d426b9b815398d6)

## Changes
- BREAKING: `Client.view_manga` has been deprecated in favour of `Client.get_manga`. (256a0a0a890483a140567681f6e3b15fe194673e)
- BREAKING: `ChapterUpload.upload_images`, and `Client.upload_chapter` now take `pathlib.Path` objects instead of raw `bytes` due to requiring access to the filenames for error checking. (99a7a37c68cebc86094cb1082d426b9b815398d6)
- `ChapterUpload.upload_images`' `sort` functionality has been extended to support more filename formats, and documentation has been added. (8a7d06d0182b9d688e44d29e7bc5579f6425466f and d5aba0fc673b131da5b0d5793ca5c478f3461605)

## Fixes
- Internal types fixes to comply with proper practice and pyright usage. (39e317b021d4d7b6f44bddf2c4e6d64e89206621)
- Docs fixes. (27d8312e3576f0fd0c6ac410e7db048f95d76030)
- `Manga.update` was missing a documentation entry for the `primary_cover` parameter, this has been added. (8ae9f16d1950dd790eeea7f3d25d62cc55ae9ce1)

### Notes

### Noted Contributors
@Axelancerr - For more typo fixes and code optimizations.
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__ = "3.0.0"
__version__ = "3.0.1"

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

Expand Down

0 comments on commit f66e9e5

Please sign in to comment.