Skip to content

Commit

Permalink
create v0.9.3
Browse files Browse the repository at this point in the history
  • Loading branch information
geritwagner committed Oct 1, 2023
1 parent c455dca commit 0c5c51e
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 7 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0).

### Fixed

## 0.9.3 - 2023-10-01

### Changed

- Introduced namespaced fields (e.g., `colrev.pubmed.pubmedid` instead of `pubmedid`).

## 0.9.2 - 2023-07-24

### Changed
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.9.2
date-released: 2023-07-23
version: 0.9.3
date-released: 2023-10-01
url: "https://github.com/CoLRev-Environment/colrev"
2 changes: 1 addition & 1 deletion colrev/ops/upgrade.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ def main(self) -> None:
"version": CoLRevVersion("0.9.2"),
"target_version": CoLRevVersion("0.9.3"),
"script": self.__migrate_0_9_3,
"released": False,
"released": True,
},
]

Expand Down
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.9.2"
version = "0.9.3"
description = "CoLRev: An open-source environment for collaborative reviews"
authors = ["Gerit Wagner <gerit.wagner@hec.ca>", "Julian Prester <julian.prester@sydney.edu.au>"]
license = "MIT"
Expand Down
4 changes: 2 additions & 2 deletions release-checklist.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@
- Run `colrev env --update_package_list`.
- Update Docker image versions and test.
- Collect release notes and update the `CHANGELOG.md`.
- Update version in `CITATION.cff`.
- Update version 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.
- Update the Github milestones, close current one, make plans for the next milestones
- Commit the changes.
- Run `git tag -s $VERSION`.
- Run `git tag -s $VERSION` (format: "0.9.1").
- Run `pip3 install -e .` locally (before testing upgrade in local repositories).
- Check whether the tests pass locally (``pytest tests``).
- Push to Github. Check whether the installation, tests, and pre-commit hooks pass.
Expand Down
2 changes: 1 addition & 1 deletion tests/2_ops/check_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def test_checks( # type: ignore

checker = colrev.checker.Checker(review_manager=base_repo_review_manager)

expected = ["0.9.2", "0.9.2"]
expected = ["0.9.3", "0.9.3"]
actual = checker.get_colrev_versions()
assert expected == actual

Expand Down

0 comments on commit 0c5c51e

Please sign in to comment.