Skip to content

Commit 8c3af86

Browse files
committed
🔖 v1.2.0
1 parent 56c8838 commit 8c3af86

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.2.0 (June 20, 2025)
4+
- adding new ontology (Framester)
5+
- enhance documentation
6+
- add test CI/CD
7+
- update automatic push-to-hub functionality
8+
- update dependencies.
9+
- upgrade ontology load functionality
10+
- update maintenance plan
11+
312
### v1.1.2 (June 11, 2025)
413
- add PKO ontology
514
- add push-to-hub interface

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@ keywords:
3131
- Large Language Models
3232
- Text-to-ontology
3333
license: MIT
34-
version: 1.1.2
34+
version: 1.2.0
3535
date-released: '2025'

ontolearner/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
__version__ = "1.1.2"
15+
__version__ = "1.2.0"
1616

1717
import logging
1818
from ontolearner import base, data_structure, ontology, text2onto, utils, tools, learner

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tool.poetry]
22
name = "OntoLearner"
33

4-
version = "1.1.2"
4+
version = "1.2.0"
55

66
description = "OntoLearner: A Modular Python Library for Ontology Learning with LLMs."
77
authors = ["Hamed Babaei Giglou <[email protected]>", "Andrei C. Aioanei <[email protected]>"]

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="OntoLearner",
8-
version="1.1.2",
8+
version="1.2.0",
99
author="Hamed Babaei Giglou, Andrei C. Aioanei",
1010
1111
description="OntoLearner: A Modular Python Library for Ontology Learning with LLMs.",
@@ -40,7 +40,7 @@
4040
"License :: OSI Approved :: MIT License",
4141
"Operating System :: OS Independent",
4242
],
43-
python_requires=">=3.10,<3.13.0",
43+
python_requires=">=3.10,<3.14.0",
4444
project_urls={
4545
"Documentation": "https://ontolearner.readthedocs.io/",
4646
"Source": "https://github.com/sciknoworg/OntoLearner",

0 commit comments

Comments
 (0)