Skip to content

Commit e53469c

Browse files
Merge pull request #29
v3.12.3
2 parents c3eb9e5 + 74fd816 commit e53469c

4 files changed

Lines changed: 8 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## v3.12.3
4+
5+
### Fixes
6+
7+
* Fix `ParsingError` being raised on the first and last submission of a user's gallery/scraps
8+
39
## v3.12.2
410

511
### Fixes

faapi/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "3.12.2"
1+
__version__ = "3.12.3"

faapi/parse.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -553,8 +553,6 @@ def parse_submission_page(sub_page: BeautifulSoup) -> dict[str, Any]:
553553
assert tag_description is not None, _raise_exception(ParsingError("Missing description tag"))
554554
assert tag_folder is not None, _raise_exception(ParsingError("Missing folder tag"))
555555
assert tag_file_url is not None, _raise_exception(ParsingError("Missing file URL tag"))
556-
assert tag_prev is not None, _raise_exception(ParsingError("Missing prev tag"))
557-
assert tag_next is not None, _raise_exception(ParsingError("Missing next tag"))
558556

559557
tag_footer: Optional[Tag] = tag_description.select_one("div.submission-footer")
560558

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "faapi"
3-
version = "3.12.2"
3+
version = "3.12.3"
44
description = "Python module to implement API-like functionality for the FurAffinity.net website."
55
authors = ["Matteo Campinoti <matteo.campinoti94@gmail.com>"]
66
license = "EUPL-1.2"

0 commit comments

Comments
 (0)