diff --git a/CHANGELOG.md b/CHANGELOG.md index 3813fd78..41fff9f7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] + +## [0.2.2] - 2026-01-15 + ### Added - **Parallel Extraction Engine**: - Implemented high-throughput parallel batch processing across all core extractors (`NERExtractor`, `RelationExtractor`, `TripletExtractor`, `EventDetector`, `SemanticNetworkExtractor`) using `concurrent.futures.ThreadPoolExecutor`. diff --git a/README.md b/README.md index 4a29794a..5ae44ce1 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ *The missing fabric between raw data and AI engineering. A comprehensive open-source framework for building semantic layers and knowledge engineering systems that transform unstructured data into AI-ready knowledge — powering Knowledge Graph-Powered RAG (GraphRAG), AI Agents, Multi-Agent Systems, and AI applications with structured semantic knowledge.* -**100% Open Source** • **MIT Licensed** • **Latest Version: 0.2.1** • **Production Ready** • **Community Driven** +**100% Open Source** • **MIT Licensed** • **Latest Version: 0.2.2** • **Production Ready** • **Community Driven** [**Discord**](https://discord.gg/pMHguUzG) diff --git a/RELEASE.md b/RELEASE.md index cb672a83..32b3350e 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -26,10 +26,10 @@ Before releasing, ensure: The project uses GitHub Actions for automated releases to PyPI. -1. **Tag the commit**: Create a new git tag for the version (e.g., `v0.2.1`). +1. **Tag the commit**: Create a new git tag for the version (e.g., `v0.2.2`). ```bash - git tag -a v0.2.1 -m "Release v0.2.1" - git push origin v0.2.1 + git tag -a v0.2.2 -m "Release v0.2.2" + git push origin v0.2.2 ``` 2. **GitHub Action**: The `Release` workflow will automatically trigger, build the package, create a GitHub Release, and publish to PyPI using Trusted Publishing. diff --git a/SECURITY.md b/SECURITY.md index 18b29394..46ddf311 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -6,6 +6,7 @@ We actively support the following versions of Semantica with security updates: | Version | Supported | | ------- | ------------------ | +| 0.2.2 | :white_check_mark: | | 0.2.1 | :white_check_mark: | | 0.2.0 | :white_check_mark: | | 0.1.1 | :white_check_mark: | diff --git a/docs/citation.md b/docs/citation.md index 8ce24717..efd120a4 100644 --- a/docs/citation.md +++ b/docs/citation.md @@ -12,22 +12,22 @@ How to cite Semantica in academic papers and research. author = {Hawksight AI}, year = {2026}, url = {https://github.com/Hawksight-AI/semantica}, - version = {0.2.1}, + version = {0.2.2}, doi = {10.5281/zenodo.XXXXXXX} } ``` ### APA -Hawksight AI. (2026). *Semantica: An Open Source Framework for Semantic Layers and Knowledge Engineering* (Version 0.2.1) [Computer software]. https://github.com/Hawksight-AI/semantica +Hawksight AI. (2026). *Semantica: An Open Source Framework for Semantic Layers and Knowledge Engineering* (Version 0.2.2) [Computer software]. https://github.com/Hawksight-AI/semantica ### MLA -Hawksight AI. *Semantica: An Open Source Framework for Semantic Layers and Knowledge Engineering*. Version 0.2.1, GitHub, 2026, https://github.com/Hawksight-AI/semantica. +Hawksight AI. *Semantica: An Open Source Framework for Semantic Layers and Knowledge Engineering*. Version 0.2.2, GitHub, 2026, https://github.com/Hawksight-AI/semantica. ### Chicago -Hawksight AI. *Semantica: An Open Source Framework for Semantic Layers and Knowledge Engineering*. Version 0.2.1. GitHub, 2026. https://github.com/Hawksight-AI/semantica. +Hawksight AI. *Semantica: An Open Source Framework for Semantic Layers and Knowledge Engineering*. Version 0.2.2. GitHub, 2026. https://github.com/Hawksight-AI/semantica. ### IEEE -Hawksight AI, "Semantica: An Open Source Framework for Semantic Layers and Knowledge Engineering," Version 0.2.1, GitHub, 2026. [Online]. Available: https://github.com/Hawksight-AI/semantica +Hawksight AI, "Semantica: An Open Source Framework for Semantic Layers and Knowledge Engineering," Version 0.2.2, GitHub, 2026. [Online]. Available: https://github.com/Hawksight-AI/semantica --- diff --git a/semantica/__init__.py b/semantica/__init__.py index 2f876df4..d81ce2cf 100644 --- a/semantica/__init__.py +++ b/semantica/__init__.py @@ -10,7 +10,7 @@ Main exports: - Config: Configuration management """ -__version__ = "0.2.1" +__version__ = "0.2.2" __author__ = "Semantica Contributors" __license__ = "MIT"