Skip to content

Commit fa89d00

Browse files
author
Gerit Wagner
committed
release 0.14.1, fixing sdist
1 parent 07b220a commit fa89d00

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
55

66
- No changes yet.
77

8+
## Release 0.14.1
9+
10+
- **Fix broken sdist**: caused wheels to ship without package code.
11+
812
## Release 0.14.0
913

1014
- **Documentation and demo notebook**: Revised the documentation and extended the demo notebook.

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ authors:
1414
- family-names: "Wagner"
1515
given-names: "Gerit"
1616
title: "Search-query: A Python package for queries in academic literature searches."
17-
version: 0.14.0
17+
version: 0.14.1
1818
date-released: 2026-01-28
1919
url: "https://github.com/ColRev-Environment/search-query"

pyproject.toml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "search-query"
3-
version = "0.14.0"
3+
version = "0.14.1"
44
description = "Package for managing literature search queries."
55
authors = [
66
{ name = "Peter Eckhardt" },
@@ -55,7 +55,12 @@ search-query = "search_query.cli:main"
5555
packages = ["search_query"]
5656

5757
[tool.hatch.build.targets.sdist]
58-
include = ["LICENSE", "README.md"]
58+
include = [
59+
"search_query/**",
60+
"LICENSE",
61+
"README.md",
62+
"pyproject.toml",
63+
]
5964

6065
[tool.pylint.MAIN]
6166
extension-pkg-whitelist = "lxml.etree"

0 commit comments

Comments
 (0)