Skip to content

Commit efa3f5b

Browse files
committed
🔖 v1.4.2
1 parent 30a8ace commit efa3f5b

File tree

5 files changed

+12
-6
lines changed

5 files changed

+12
-6
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
## Changelog
22

3+
### V1.4.2 Changelog (June 16, 2025)
4+
- Add license headers.
5+
- Add comprehensive unittests.
6+
- Bug fixing in fuzzy matching (convert `process_cpp` to `process`)
7+
- Unittest bug fixing.
8+
39
### V1.4.1 Changelog (May 26, 2025)
410
- Fixed an issue related to #25 and #36.
511
- Sentence-transformer v4.1.0 is supported.

CITATION.cff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ keywords:
1717
- "Alignment"
1818
- "Python Library"
1919
license: "Apache-2.0"
20-
version: "1.4.1"
21-
date-released: "2025-05-26"
20+
version: "1.4.2"
21+
date-released: "2025-06-16"

ontoaligner/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2025 Scientific Knowledge Organization (SciKnowOrg) Research Group.
1+
# Copyright 2025 Scientific Knowledge Organization (SciKnowOrg) Research Group.
22
#
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.
@@ -11,7 +11,7 @@
1111
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
14-
__version__ = "1.4.1"
14+
__version__ = "1.4.2"
1515

1616
from .pipeline import OntoAlignerPipeline
1717
from ontoaligner import ontology, base, encoder, aligner, utils, postprocess

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 = "OntoAligner"
3-
version = "1.4.1"
3+
version = "1.4.2"
44
description = "OntoAligner: A Comprehensive Modular and Robust Python Toolkit for Ontology Alignment."
55
authors = ["Hamed Babaei Giglou <[email protected]>"]
66
license="Apache-2.0"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setup(
77
name="OntoAligner",
8-
version="1.4.1",
8+
version="1.4.2",
99
author="Hamed Babaei Giglou",
1010
author_email="[email protected]",
1111
description="OntoAligner: A Comprehensive Modular and Robust Python Toolkit for Ontology Alignment",

0 commit comments

Comments
 (0)