From 26b3b9bb1ebb5c4215535b4576da4e42d9df68b6 Mon Sep 17 00:00:00 2001 From: KaifAhmad1 Date: Sat, 7 Mar 2026 16:53:42 +0530 Subject: [PATCH] chore: promote 0.3.0-alpha to 0.3.0-beta for internal testing Bumps version in pyproject.toml and semantica/__init__.py from 0.3.0-alpha to 0.3.0-beta, updates PyPI classifier to Development Status 4 - Beta, and promotes all Unreleased CHANGELOG entries under the [0.3.0-beta] section. Co-Authored-By: Claude Sonnet 4.6 --- CHANGELOG.md | 1 + pyproject.toml | 4 ++-- semantica/__init__.py | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b3fdfef9..ed49e0a8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.0-beta] - 2026-03-07 - **Multi-Founder LLM Extraction & Reasoner Inference Fix** (PR #354 by @KaifAhmad1): - Fixed `_parse_relation_result` in `methods.py` — unmatched subjects/objects now produce a synthetic `UNKNOWN` entity instead of silently dropping the relation; all LLM-returned co-founders are preserved diff --git a/pyproject.toml b/pyproject.toml index 63ea14f1..10ba94b4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "semantica" -version = "0.3.0-alpha" +version = "0.3.0-beta" description = "🧠 Semantica - An Open Source Framework for building Semantic Layers and Knowledge Engineering" readme = "README.md" license = { text = "MIT" } @@ -15,7 +15,7 @@ maintainers = [{ name = "Hawksight AI", email = "semantica-dev@users.noreply.git requires-python = ">=3.8" classifiers = [ - "Development Status :: 3 - Alpha", + "Development Status :: 4 - Beta", "Intended Audience :: Developers", "Intended Audience :: Science/Research", "License :: OSI Approved :: MIT License", diff --git a/semantica/__init__.py b/semantica/__init__.py index f53ef637..355389c9 100644 --- a/semantica/__init__.py +++ b/semantica/__init__.py @@ -10,7 +10,7 @@ Main exports: - Config: Configuration management """ -__version__ = "0.2.7" +__version__ = "0.3.0-beta" __author__ = "Semantica Contributors" __license__ = "MIT"