Skip to content

Commit 7303d8e

Browse files
committed
version bump and changelog
1 parent f2d81ae commit 7303d8e

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

CHANGELOG.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,16 @@
1-
3.7.2
1+
3.7.3
22

33
API Version 5.12.0
44

55
# Hondana Changelog
66
Hondana fix release, see below for finer details.
77

88
## Added
9-
- Added `accept_tos=` to `ChapterUpload`, `Client.upload_session` and `Client.upload_chapter` as a mandatory parameter. (01445d23a8777cdf31e89990d50d29a32687a4ea)
10-
- Added to all relevant examples.
11-
- Added necessary documentation.
129

1310
## Changes
1411

1512
## Fixes
13+
- Fixed an issue where built and published wheels actually didn't contain source code. (6028e67222a7d15b502f1ed8bda2455671f8c9f4)
1614

1715
### Notes
1816
- The Terms of Service you are requested to accept for chapter uploading can be found [here](https://mangadex.org/compliance).

hondana/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
__author__ = "AbstractUmbra"
2727
__license__ = "MIT"
2828
__copyright__ = "Copyright 2021-present AbstractUmbra"
29-
__version__ = "3.7.2"
29+
__version__ = "3.7.3"
3030

3131
import logging
3232
from typing import Literal, NamedTuple
@@ -60,7 +60,7 @@ class VersionInfo(NamedTuple):
6060
serial: int
6161

6262

63-
version_info: VersionInfo = VersionInfo(major=3, minor=7, micro=2, releaselevel="final", serial=0)
63+
version_info: VersionInfo = VersionInfo(major=3, minor=7, micro=3, releaselevel="final", serial=0)
6464

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

0 commit comments

Comments
 (0)