From 428fc3b83ad058eb50a0f7d078968fb741943a72 Mon Sep 17 00:00:00 2001 From: KaifAhmad1 Date: Mon, 12 Jan 2026 17:48:07 +0530 Subject: [PATCH] chore(release): bump version to 0.2.1 and update release docs --- CHANGELOG.md | 2 ++ README.md | 2 +- RELEASE.md | 6 +++--- SECURITY.md | 1 + docs/citation.md | 10 +++++----- pyproject.toml | 2 +- semantica/__init__.py | 2 +- 7 files changed, 14 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 40b49432..3deca49e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.1] - 2026-01-12 + ### Fixed - **LLM Output Stability (Bug #176)**: - Fixed incomplete JSON output issues by correctly propagating `max_tokens` parameter in `extract_relations_llm`. diff --git a/README.md b/README.md index 574cd8eb..4a29794a 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.0** • **Production Ready** • **Community Driven** +**100% Open Source** • **MIT Licensed** • **Latest Version: 0.2.1** • **Production Ready** • **Community Driven** [**Discord**](https://discord.gg/pMHguUzG) diff --git a/RELEASE.md b/RELEASE.md index 65ac7851..cb672a83 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.0`). +1. **Tag the commit**: Create a new git tag for the version (e.g., `v0.2.1`). ```bash - git tag -a v0.2.0 -m "Release v0.2.0" - git push origin v0.2.0 + git tag -a v0.2.1 -m "Release v0.2.1" + git push origin v0.2.1 ``` 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 51b053f7..18b29394 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.1 | :white_check_mark: | | 0.2.0 | :white_check_mark: | | 0.1.1 | :white_check_mark: | | 0.1.0 | :white_check_mark: | diff --git a/docs/citation.md b/docs/citation.md index 5517afc6..8ce24717 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.0}, + version = {0.2.1}, doi = {10.5281/zenodo.XXXXXXX} } ``` ### APA -Hawksight AI. (2026). *Semantica: An Open Source Framework for Semantic Layers and Knowledge Engineering* (Version 0.2.0) [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.1) [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.0, GitHub, 2026, https://github.com/Hawksight-AI/semantica. +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. ### Chicago -Hawksight AI. *Semantica: An Open Source Framework for Semantic Layers and Knowledge Engineering*. Version 0.2.0. GitHub, 2026. https://github.com/Hawksight-AI/semantica. +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. ### IEEE -Hawksight AI, "Semantica: An Open Source Framework for Semantic Layers and Knowledge Engineering," Version 0.2.0, 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.1, GitHub, 2026. [Online]. Available: https://github.com/Hawksight-AI/semantica --- diff --git a/pyproject.toml b/pyproject.toml index d53a2a1e..9fcbb61d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "semantica" -version = "0.2.0" +version = "0.2.1" description = "🧠 Semantica - An Open Source Framework for building Semantic Layers and Knowledge Engineering " readme = "README.md" license = {text = "MIT"} diff --git a/semantica/__init__.py b/semantica/__init__.py index 774b9b13..2f876df4 100644 --- a/semantica/__init__.py +++ b/semantica/__init__.py @@ -10,7 +10,7 @@ Main exports: - Config: Configuration management """ -__version__ = "0.2.0" +__version__ = "0.2.1" __author__ = "Semantica Contributors" __license__ = "MIT"