Skip to content

Commit 705d58b

Browse files
committed
🔖 v1.5.0
1 parent dbcfcf7 commit 705d58b

File tree

5 files changed

+13
-5
lines changed

5 files changed

+13
-5
lines changed

CHANGELOG.md

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

3+
### V1.5.0 Changelog (July 29, 2025)
4+
- Added 17 Knowledge Graph Embedding (KGE) aligner models.
5+
- Major documentation update: improved structure, clarity, sectioning, etc.
6+
- Introduced a dedicated documentation page for KGE.
7+
- Added example use cases for KGE models.
8+
- Applied cosmetic improvements to code formatting and style.
9+
- Update requirements with `pykeen=1.11.1`
10+
311
### V1.4.3 Changelog (July 1, 2025)
412
- Convert `torch==2.7.0` to `torch==2.6.0`
513

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.2"
21-
date-released: "2025-06-16"
20+
version: "1.5.0"
21+
date-released: "2025-07-29"

ontoaligner/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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.3"
14+
__version__ = "1.5.0"
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.3"
3+
version = "1.5.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.4.3",
8+
version="1.5.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)