Skip to content

Commit 134c152

Browse files
committed
🔖 v1.3.0
1 parent a320832 commit 134c152

File tree

4 files changed

+12
-5
lines changed

4 files changed

+12
-5
lines changed

CHANGELOG.md

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

3+
### V1.3.0 (March 21, 2025)
4+
- Added a GenericOntology and GenericOMDataset.
5+
- Added a documentation for OA tasks.
6+
- Added the test for GenericOntology.
7+
- Added the bug fix.
8+
9+
310
### V1.2.3 (Feb 4, 2025)
411
- Minor fix to the CITATION.md, CONTRIBUTING.md, README.md, and documentations.
512
- Added MAINTANENCE.md for maintanence plan.

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.2.3"
2+
__version__ = "1.3.0"
33

44
from .pipeline import OntoAlignerPipeline
55
from ontoaligner import ontology, base, encoder, ontology_matchers, utils, postprocess

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[tool.poetry]
22
name = "OntoAligner"
3-
version = "1.2.3"
3+
version = "1.3.0"
44
description = "OntoAligner: A Comprehensive Modular and Robust Python Toolkit for Ontology Alignment."
55
authors = ["Hamed Babaei Giglou <[email protected]>"]
6-
license = "Apache Software License"
6+
license="Apache-2.0"
77
readme = "README.md"
88
homepage = "https://ontoaligner.readthedocs.io/"
99
repository = "https://github.com/sciknoworg/OntoAligner/"

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setup(
77
name="OntoAligner",
8-
version="1.2.3",
8+
version="1.3.0",
99
author="Hamed Babaei Giglou",
1010
author_email="[email protected]",
1111
description="OntoAligner: A Comprehensive Modular and Robust Python Toolkit for Ontology Alignment",
@@ -39,7 +39,7 @@
3939
"Intended Audience :: Developers",
4040
"Topic :: Software Development :: Libraries :: Python Modules",
4141
"Programming Language :: Python :: 3",
42-
"License :: OSI Approved :: Apache Software License",
42+
"License :: OSI Approved :: Apache-2.0",
4343
"Operating System :: OS Independent",
4444
],
4545
python_requires=">=3.10,<4.0.0",

0 commit comments

Comments
 (0)