Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
## Changelog

### V1.4.0 Changelog (May 2025)
- Fixed a security vulnerability by updating the Torch and Transformers dependency version.
- Integrated pytest into the pyproject.toml to enable testing support.
- Resolved Python version compatibility issues in the continuous integration (CI) pipeline for stable test runs.
- Included a preprint citation to enhance academic referencing.
- Made cosmetic and informational updates to the documentation and readme to improve readability.
- Renamed the module ontology_matchers to aligner for better clrity and consistency.
- Added ecommerce use-case examples and documentation to demonstrate real-world applications.

### V1.3.0 (March 21, 2025)
- Added a GenericOntology and GenericOMDataset.
- Added a documentation for OA tasks.
Expand Down
4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ keywords:
- "Alignment"
- "Python Library"
license: "Apache-2.0"
version: "1.3.0"
date-released: "2025-03-20"
version: "1.4.0"
date-released: "2025-05-22"
2 changes: 1 addition & 1 deletion ontoaligner/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
__version__ = "1.3.0"
__version__ = "1.4.0"

from .pipeline import OntoAlignerPipeline
from ontoaligner import ontology, base, encoder, aligner, utils, postprocess
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 = "OntoAligner"
version = "1.3.0"
version = "1.4.0"
description = "OntoAligner: A Comprehensive Modular and Robust Python Toolkit for Ontology Alignment."
authors = ["Hamed Babaei Giglou <[email protected]>"]
license="Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name="OntoAligner",
version="1.3.0",
version="1.4.0",
author="Hamed Babaei Giglou",
author_email="[email protected]",
description="OntoAligner: A Comprehensive Modular and Robust Python Toolkit for Ontology Alignment",
Expand Down