Skip to content

Commit bd7d808

Browse files
committed
🔖 v1.3.1
1 parent 6b79643 commit bd7d808

File tree

5 files changed

+13
-5
lines changed

5 files changed

+13
-5
lines changed

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,21 @@
11
## Changelog
22

3+
### v1.3.1 (August 13, 2025)
4+
- `Processor` module is operational. Fixed with ease of use principles.
5+
- The huggingface readme files template are updated.
6+
- Documentation website benchmark pages are updated.
7+
- Cosmetic fixes.
8+
- Remove static methods feature from Ontologizer for smooth development.
9+
- add `openpyxl` dependency for xlsx load.
10+
311
### v1.3.0 (July 14, 2025)
412
- Add verbose for logging at train-test splits
513
- High-level encapsulation of learners: LLM, retriever, and rag
614
- Update pipeline to a newer version
715
- Optimize code
816
- Refactor examples
917
- Delete dummy scripts from the script dir
10-
- Parameter custimization
18+
- Parameter custmization
1119
- Add AutoOntology feature
1220
- Extensive update on documentation
1321
- Update Readme

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.3.0
34+
version: 1.3.1
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.3.0"
15+
__version__ = "1.3.1"
1616

1717
import logging
1818
from ontolearner import (ontology,

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.3.0"
4+
version = "1.3.1"
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setup(
77
name="OntoLearner",
8-
version="1.3.0",
8+
version="1.3.1",
99
author="Hamed Babaei Giglou, Andrei C. Aioanei",
1010
1111
description="OntoLearner: A Modular Python Library for Ontology Learning with LLMs.",

0 commit comments

Comments
 (0)