Skip to content

Commit 0c3b82c

Browse files
author
Gerit Wagner
committed
release 0.11.0
1 parent b7a530b commit 0c3b82c

File tree

4 files changed

+21
-4
lines changed

4 files changed

+21
-4
lines changed

CHANGELOG.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,23 @@
22
# Change Log
33
All notable changes to this project will be documented in this file.
44

5-
# Release 0.10.0
5+
## Release 0.11.0
6+
7+
- Refactoring (AND/OR/NOT-Queries, method signatures, public to private methods)
8+
- Rename methods: `query.translate_xy()` to `query.write(syntax=xy)`, `query.print_query_xy()` to `query.to_string(syntax=xy)`
9+
- Integrate Query tree into node attribute
10+
- Make dev dependencies optional
11+
- Add tests on GitHub actions
12+
- Extract constants
13+
- Code skeleton for Parsers and Linters
14+
- Documentation: Sphinx
15+
- SearchFields instead of str
16+
- Binder demo
17+
- Implement `Query.selects()`
18+
- Drop ABC inheritance
19+
- Add `is_term()` and `is_operator()`
20+
21+
## Release 0.10.0
622

723
First basic implementation of a search query translator.
824

CITATION.cff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ authors:
66
- family-names: "Ernst"
77
given-names: "Katharina Maria"
88
title: "Search-query: A Python package for queries in academic literature searches."
9-
version: 0.10.0
10-
date-released: 2024-03-09
9+
version: 0.11.0
10+
date-released: 2024-12-27
1111
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
[tool.poetry]
22
name = "search-query"
3-
version = "0.10.0"
3+
version = "0.11.0"
44
description = "Package for managing literature search queries."
55
authors = ["Katharina Ernst <katharina-maria.ernst@stud.uni-bamberg.de>", "Gerit Wagner <gerit.wagner@uni-bamberg.de>"]
66
license = "MIT"

release-checklist.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Release checklist
22

33
- Run [poetry update on GitHub](https://github.com/CoLRev-Environment/search-query/actions/workflows/poetry_update.yml).
4+
- Use constants.
45
- Collect release notes and update the `CHANGELOG.md`.
56
- Update **version** and **date** and date in `CITATION.cff`.
67
- Update the version in `pyproject.toml`.

0 commit comments

Comments
 (0)