Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "aiui"
version = "0.3.109"
version = "0.3.110"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The version increment to 0.3.110 is a patch bump, but the PR description highlights significant new features (MCP, platform connectors, OAuth, instrumentation) and a '10-phase naming / capability refactor'. Under Semantic Versioning, these changes—especially a naming refactor which often involves breaking changes—should trigger a minor version bump (e.g., 0.4.0) to correctly signal the scope of changes to users.

Furthermore, this consolidation release is an ideal time to resolve metadata inconsistencies in this file:

  1. Python Support: requires-python = ">=3.10" (line 10) contradicts the Python 3.9 classifier (line 17) and the tool configurations for ruff and mypy (lines 169, 189).
  2. Description: The description on line 4 ('YAML-driven website generator') appears outdated given the new AI UI focus.
Suggested change
version = "0.3.110"
version = "0.4.0"

description = "YAML-driven website generator - CLI and compiler"
readme = "README.md"
license = {text = "MIT"}
Expand Down
2 changes: 1 addition & 1 deletion src/praisonaiui/__version__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Version information."""

__version__ = "0.3.109"
__version__ = "0.3.110"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

Update to 0.4.0 to maintain consistency with the suggested minor version bump in pyproject.toml.

Suggested change
__version__ = "0.3.110"
__version__ = "0.4.0"

Loading