Skip to content

Commit a42d072

Browse files
committed
🔖 v1.4.0
1 parent eeeb578 commit a42d072

File tree

5 files changed

+14
-5
lines changed

5 files changed

+14
-5
lines changed

CHANGELOG.md

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

3+
### V1.4.0 Changelog (May 2025)
4+
- Fixed a security vulnerability by updating the Torch and Transformers dependency version.
5+
- Integrated pytest into the pyproject.toml to enable testing support.
6+
- Resolved Python version compatibility issues in the continuous integration (CI) pipeline for stable test runs.
7+
- Included a preprint citation to enhance academic referencing.
8+
- Made cosmetic and informational updates to the documentation and readme to improve readability.
9+
- Renamed the module ontology_matchers to aligner for better clrity and consistency.
10+
- Added ecommerce use-case examples and documentation to demonstrate real-world applications.
11+
312
### V1.3.0 (March 21, 2025)
413
- Added a GenericOntology and GenericOMDataset.
514
- Added a documentation for OA tasks.

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.3.0"
21-
date-released: "2025-03-20"
20+
version: "1.4.0"
21+
date-released: "2025-05-22"

ontoaligner/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
__version__ = "1.3.0"
2+
__version__ = "1.4.0"
33

44
from .pipeline import OntoAlignerPipeline
55
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.3.0"
3+
version = "1.4.0"
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.3.0",
8+
version="1.4.0",
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)