Skip to content

Commit ee646ae

Browse files
author
Gerit Wagner
committed
release 0.7.4
1 parent eb59478 commit ee646ae

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0).
1717
### Fixed
1818
-->
1919

20+
## 0.7.4 - 2024-04-29
21+
22+
- Add [ASySD](https://github.com/camaradesuk/ASySD) to the evaluation
23+
- Update docs for evaluation
24+
- Prevent SettingWithCopyWarning in maybe_cases and zero-division in precision
25+
2026
## 0.7.3 - 2024-04-16
2127

2228
- Load example datasets on demand to avoid large package size (potentially causes errors during installation [1](https://github.com/CoLRev-Environment/colrev/actions/runs/8711093539/job/23894441546))

CITATION.cff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ authors:
55
given-names: "Gerit"
66
orcid: "https://orcid.org/0000-0003-3926-7717"
77
title: "BibDedupe: An Open-Source Python Library for Bibliographic Record Deduplication"
8-
version: 0.7.3
9-
date-released: 2024-04-16
8+
version: 0.7.4
9+
date-released: 2024-04-29
1010
url: "https://github.com/CoLRev-Environment/bib-dedupe"

pyproject.toml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "bib-dedupe"
3-
version = "0.7.3"
3+
version = "0.7.4"
44
description = "Identify and merge duplicates in bibliographic records"
55
authors = ["Gerit Wagner <gerit.wagner@uni-bamberg.de>"]
66
license = "MIT"
@@ -38,8 +38,6 @@ ignore_missing_imports = true
3838

3939
[[tool.mypy.overrides]]
4040
module = [
41-
"requests.*",
42-
"yaml.*",
4341
"pkg_resources.*",
4442
]
4543
ignore_missing_imports = true
@@ -57,7 +55,6 @@ omit = [
5755
[tool.coverage.run]
5856
omit = [
5957
"/usr/*", # omit everything in /usr
60-
"*crossrefapi/crossref/*",
6158
"/tmp/*",
6259
"tests/*",
6360
]
@@ -69,6 +66,5 @@ line-length = 160
6966
"**/{tests,docs}/*" = ["E501"]
7067

7168
[build-system]
72-
# requires = ["poetry>=1.2.0b1"]
7369
requires = ["poetry-core>=1.0.0", "cython<3.0"]
7470
build-backend = "poetry.core.masonry.api"

0 commit comments

Comments
 (0)