Skip to content

Commit 833cc32

Browse files
committed
release 0.15.0
1 parent a739325 commit 833cc32

File tree

5 files changed

+34
-23
lines changed

5 files changed

+34
-23
lines changed

.github/workflows/tests.yml

Lines changed: 19 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,64 +1,68 @@
11
name: Tests
22

33
on:
4-
- push
5-
- pull_request
4+
push:
5+
pull_request:
66

77
jobs:
88
tests:
99
strategy:
1010
matrix:
1111
platform: [ubuntu-latest, windows-latest, macos-latest]
12-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
12+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
1313
runs-on: ${{ matrix.platform }}
1414
steps:
1515
- uses: actions/checkout@v4
1616

17+
- name: Remove existing venv (cross-platform)
18+
shell: bash
19+
run: rm -rf .venv
20+
1721
- name: Install uv
1822
uses: astral-sh/setup-uv@v5
1923
with:
2024
python-version: ${{ matrix.python-version }}
2125
enable-cache: true
2226

23-
- name: Install dependencies with uv
24-
run: |
25-
uv venv
26-
uv pip install -e .[dev]
27-
echo "Dependencies installed successfully"
28-
2927
- name: Setup git
3028
run: |
3129
git config --global user.name "Search-query test"
3230
git config --global user.email "actions@users.noreply.github.com"
3331
git config --global url.https://github.com/.insteadOf git://github.com/
3432
33+
- name: Install dependencies with uv
34+
run: uv pip install -e .[dev]
35+
3536
- name: Run tests with uv
3637
run: uv run pytest test -vv
3738

3839
pip-install:
3940
strategy:
4041
matrix:
4142
platform: [ubuntu-latest, windows-latest, macos-latest]
42-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
43+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
4344
runs-on: ${{ matrix.platform }}
4445
steps:
4546
- uses: actions/checkout@v4
4647

4748
- name: Set up Python ${{ matrix.python-version }}
48-
uses: actions/setup-python@v4
49+
uses: actions/setup-python@v5
4950
with:
5051
python-version: ${{ matrix.python-version }}
5152

52-
- name: Install via pip
53-
run: |
54-
pip install -e .[dev]
55-
pip list
53+
- name: Upgrade pip tooling
54+
run: python -m pip install -U pip setuptools wheel
5655

5756
- name: Setup git
5857
run: |
5958
git config --global user.name "Search-query test"
6059
git config --global user.email "actions@users.noreply.github.com"
6160
git config --global url.https://github.com/.insteadOf git://github.com/
6261
62+
- name: Install via pip
63+
run: |
64+
pip install -e .[dev]
65+
pip list
66+
6367
- name: Run tests
6468
run: pytest test -vv

CHANGELOG.md

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

66
- No changes yet.
77

8+
## Release 0.15.0
9+
10+
- Polish docs (automate page, with pinned colrev version; functional overview)
11+
- Extend tests (covering code in the paper; dist smoke test)
12+
- JSON: make `SearchQuery(query=...)` the (safer) default
13+
814
## Release 0.14.1
915

1016
- **Fix broken sdist**: caused wheels to ship without package code.

CITATION.cff

Lines changed: 2 additions & 2 deletions
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.1
18-
date-released: 2026-01-28
17+
version: 0.15.0
18+
date-released: 2026-02-06
1919
url: "https://github.com/ColRev-Environment/search-query"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "search-query"
3-
version = "0.14.1"
3+
version = "0.15.0"
44
description = "Package for managing literature search queries."
55
authors = [
66
{ name = "Peter Eckhardt" },

release-checklist.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,9 @@
1212
- Check whether the tests pass locally (``pytest tests``).
1313
- Run `git push --atomic origin main $VERSION`.
1414

15-
- Create [new release on GitHub](https://github.com/CoLRev-Environment/search-query/releases/new)
16-
- Select new tag
17-
- Enter the release notes
18-
- Publish the release
19-
- The PyPI version is automatically published through a [github action](https://github.com/CoLRev-Environment/search-query/actions/workflows/publish.yml).
15+
Create [new release on GitHub](https://github.com/CoLRev-Environment/search-query/releases/new)
16+
17+
- Select new tag
18+
- Enter the release notes
19+
- Publish the release
20+
- The PyPI version is automatically published through a [github action](https://github.com/CoLRev-Environment/search-query/actions/workflows/publish.yml).

0 commit comments

Comments
 (0)