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 Oct 29, 2022
1 parent 572ff89 commit 293c60a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 10 deletions.
11 changes: 4 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,17 @@
3.4.2
3.4.3

API Version 5.7.3
API Version 5.7.4b

# Hondana Changelog
API Release!

## Added
- User report collection endpoint now supports reference expansion. (5ebe280724ff304428910b908619318e53d6c489)
- User report collection now supports filtering by report ID and report type ID. (fa9a34a6f356589bf5d47c3546a0c6323ba1f48b)
- Tag filtering on `Client.get_random_manga()` has been added. (56de42140db46fbba3be5403b3321bede87b4795)

## Changes
- Added dependabot meta project details to keep dependencies in check. (dd4e8025ec8cf13cfb0a7eb48a5391f9566d28e8)

## Fixes
- Fix new MultiDict internal usage causing only the final key to take effect. (770a9fb4869c79247cfa3643f27f74b9404a66c9)
- MangaDex backend sending empty arrays instead of objects where supposed. (8416ba2c71e33f9e46ab0f825f78b18733035ad9)
- Tests are now fixed due to corrected payload data on the MD side.

### Notes

Expand Down
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.4.2"
__version__ = "3.4.3"

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


version_info: VersionInfo = VersionInfo(major=3, minor=4, micro=2, releaselevel="final", serial=0)
version_info: VersionInfo = VersionInfo(major=3, minor=4, micro=3, releaselevel="final", serial=0)

logging.getLogger(__name__).addHandler(logging.NullHandler())

Expand Down
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.4.2"
version = "3.4.3"
description = "An asynchronous wrapper around the MangaDex v5 API"
authors = ["Alex Nørgaard <[email protected]>"]

Expand Down

0 comments on commit 293c60a

Please sign in to comment.