Skip to content

Commit 4743c55

Browse files
committed
release 0.15.0
1 parent a739325 commit 4743c55

File tree

5 files changed

+30
-23
lines changed

5 files changed

+30
-23
lines changed

.github/workflows/tests.yml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
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
@@ -20,45 +20,45 @@ jobs:
2020
python-version: ${{ matrix.python-version }}
2121
enable-cache: true
2222

23-
- name: Install dependencies with uv
24-
run: |
25-
uv venv
26-
uv pip install -e .[dev]
27-
echo "Dependencies installed successfully"
28-
2923
- name: Setup git
3024
run: |
3125
git config --global user.name "Search-query test"
3226
git config --global user.email "actions@users.noreply.github.com"
3327
git config --global url.https://github.com/.insteadOf git://github.com/
3428
29+
- name: Install dependencies with uv
30+
run: uv pip install -e .[dev]
31+
3532
- name: Run tests with uv
3633
run: uv run pytest test -vv
3734

3835
pip-install:
3936
strategy:
4037
matrix:
4138
platform: [ubuntu-latest, windows-latest, macos-latest]
42-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
39+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
4340
runs-on: ${{ matrix.platform }}
4441
steps:
4542
- uses: actions/checkout@v4
4643

4744
- name: Set up Python ${{ matrix.python-version }}
48-
uses: actions/setup-python@v4
45+
uses: actions/setup-python@v5
4946
with:
5047
python-version: ${{ matrix.python-version }}
5148

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

5752
- name: Setup git
5853
run: |
5954
git config --global user.name "Search-query test"
6055
git config --global user.email "actions@users.noreply.github.com"
6156
git config --global url.https://github.com/.insteadOf git://github.com/
6257
58+
- name: Install via pip
59+
run: |
60+
pip install -e .[dev]
61+
pip list
62+
6363
- name: Run tests
6464
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)