Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,15 @@ All notable changes to PyScrappy are documented here. The format is based on
[Keep a Changelog](https://keepachangelog.com/), and this project adheres to
[Semantic Versioning](https://semver.org/).

## [1.5.3] - 2026-08-12

### Fixed
- `Selector.xpath()` no longer crashes on a scalar XPath like `count(...)` or `boolean(...)`; the value is returned as a single-item string result (#136).
- `MetadataExtractor` drops empty `keywords` entries produced by trailing or repeated commas, e.g. `"a, , b,"` -> `["a", "b"]` (#137).

### Changed
- `AdaptiveStore.save()` writes the fingerprint store atomically (temp file + `os.replace`), so a crash mid-write or a concurrent write can no longer corrupt `adaptive.json` (#138).

## [1.5.2] - 2026-08-10

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "pyscrappy"
version = "1.5.2"
version = "1.5.3"
description = "A robust, all-in-one Python web scraping toolkit"
readme = "README.md"
license = "MIT"
Expand Down
4 changes: 2 additions & 2 deletions server.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@
"url": "https://github.com/mldsveda/PyScrappy",
"source": "github"
},
"version": "1.5.2",
"version": "1.5.3",
"packages": [
{
"registryType": "pypi",
"registryBaseUrl": "https://pypi.org",
"identifier": "pyscrappy",
"version": "1.5.2",
"version": "1.5.3",
"runtimeHint": "uvx",
"transport": {
"type": "stdio"
Expand Down
2 changes: 1 addition & 1 deletion src/pyscrappy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@
register(_cls.name, _cls)
del _cls

__version__ = "1.5.2"
__version__ = "1.5.3"

__all__ = [
# Core
Expand Down
Loading