Skip to content

Commit d6952f7

Browse files
committed
🔖 1.3.0
1 parent 1f667dc commit d6952f7

File tree

6 files changed

+19
-5
lines changed

6 files changed

+19
-5
lines changed

CHANGELOG.md

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

3+
### v1.3.0 (July 14, 2025)
4+
- Add verbose for logging at train-test splits
5+
- High-level encapsulation of learners: LLM, retriever, and rag
6+
- Update pipeline to a newer version
7+
- Optimize code
8+
- Refactor examples
9+
- Delete dummy scripts from the script dir
10+
- Parameter custimization
11+
- Add AutoOntology feature
12+
- Extensive update on documentation
13+
- Update Readme
14+
- Add Unittest
15+
- Add package references in the documentation website
16+
317
### v1.2.1 (June 20, 2025)
418
- fix toml packages reference
519
- add print functionality to ontologizer

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.2.1
34+
version: 1.3.0
3535
date-released: '2025'

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ or:
182182
month = may,
183183
year = 2025,
184184
publisher = {Zenodo},
185-
version = {v1.0.1},
185+
version = {v1.3.0},
186186
doi = {10.5281/zenodo.15399783},
187187
url = {https://doi.org/10.5281/zenodo.15399783},
188188
}

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.2.1"
15+
__version__ = "1.3.0"
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.2.1"
4+
version = "1.3.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: 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.2.1",
8+
version="1.3.0",
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)