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 Jan 24, 2022
1 parent 8947d0c commit 5a9de6b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,18 @@
2.0.4

API Version 5.4.11!
API Version 5.4.12!

# Hondana Changelog

## Added
- `Client.get_my_reports` method to retrieve all current logged in user's reports. (8947d0c68e036e15a56dd868dc59ae153899c68f)
- `Cover.locale` attribute, as well as parameters for creation and editing methods of Cover. (8947d0c68e036e15a56dd868dc59ae153899c68f)
- `Manga.chapter_numbers_reset_on_new_volume` attribute was added. (8947d0c68e036e15a56dd868dc59ae153899c68f)
- Allow logging in with the client using a refresh token, and a convenience method to dump the token to file. (d86f2bff55fd2d552428f4e45c8438233324d1d9)

## Changes

## Fixes
- Numerous docs cleanups and typo fixes (thanks Axel). (3f5bf4ad764283eecc0301cc7ee9d80004a22598)

### Notes
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.0.4a"
__version__ = "2.0.4"

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


version_info: VersionInfo = VersionInfo(major=2, minor=0, micro=4, releaselevel="alpha", serial=0)
version_info: VersionInfo = VersionInfo(major=2, minor=0, micro=4, 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.0.4a"
version = "2.0.4"
description = "An asynchronous wrapper around the MangaDex v5 API"
authors = ["Alex Nørgaard <[email protected]>"]

Expand Down

0 comments on commit 5a9de6b

Please sign in to comment.