Skip to content

Commit

Permalink
release 0.12.3
Browse files Browse the repository at this point in the history
  • Loading branch information
geritwagner committed Jun 15, 2024
1 parent 8938754 commit be32733
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 5 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0).
### Fixed
-->

## 0.12.3 - 2024-06-15

- Extend documentation (package development, package summaries, asciinema demo)
- Bugfixes and codebase improvements (e.g., package management and discovery, closing sqlite connections)
- Reduce dependencies (e.g., levenshtein, PyPDF2, pdfminer, daff, psutil)
- Refactor colrev.bibliography_export (add writers)
- Extend tests: cover MacOS and Python 3.12
- Remove unnecessary options (e.g., init --local_pdf_collection)
- Add and test support for GitHub codespaces

## 0.12.2 - 2024-04-29

- Update CoLRev packages (including interfaces, development docs etc.)
Expand Down
4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ authors:
given-names: "Julian"
orcid: "https://orcid.org/0000-0003-2682-8036"
title: "CoLRev: An open-source environment for collaborative reviews"
version: 0.12.2
date-released: 2024-04-29
version: 0.12.3
date-released: 2024-06-15
url: "https://github.com/CoLRev-Environment/colrev"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "colrev"
version = "0.12.2"
version = "0.12.3"
description = "CoLRev: An open-source environment for collaborative reviews"
authors = ["Gerit Wagner <[email protected]>", "Julian Prester <[email protected]>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion release-checklist.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ For all releases:
- Run [poetry update on GitHub](https://github.com/CoLRev-Environment/colrev/actions/workflows/poetry_update.yml).
- Change released to `True` for the migration script in `ops/upgrade.py`, add a new migration script.
- Update `settings.py - _add_missing_attributes()` to prevent exceptions.
- Update the version in `pyproject.toml`. Check whether other parts of the `pyproject.toml` need to be updated. Check whether dependencies can be removed.
- Update version in `tests/0_core/review_manager_test.py`
- Run `colrev env --update_package_list`.
- Collect release notes and update the `CHANGELOG.md`.
- Update **version** and **date** and date in `CITATION.cff`.
- Update version in `SECURITY.md`.
- Update the version in `pyproject.toml`. Check whether other parts of the `pyproject.toml` need to be updated. Check whether dependencies can be removed.
- Check: `pyproject.toml` cannot have direct depdencies (Github)
- Run `pip3 install -e .` locally (before testing upgrade in local repositories).
- Commit the changes (`release 0.10.0`).
Expand Down
2 changes: 1 addition & 1 deletion tests/0_core/review_manager_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def test_get_colrev_versions(
base_repo_review_manager: colrev.review_manager.ReviewManager,
) -> None:
colrev_versions = base_repo_review_manager.get_colrev_versions()
assert ["0.12.2", "0.12.2"] == colrev_versions
assert ["0.12.3", "0.12.3"] == colrev_versions


def test_check_repository_setup(
Expand Down

0 comments on commit be32733

Please sign in to comment.