Skip to content

Commit 881f5dd

Browse files
committed
chore(release): update version to 0.5.2
1 parent 824ffd6 commit 881f5dd

8 files changed

Lines changed: 9 additions & 8 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@ SPDX-License-Identifier: MIT-0
55

66
## [Unreleased]
77

8-
### Added
8+
## [0.5.2]
99

10+
### Added
1011

1112
- **Multi-tenancy with Role-Based Access Control (RBAC)** — 4-role model (Admin, Author, Reviewer, Viewer) with server-side AppSync auth directives, server-side Reviewer document filtering, and UI adaptation. Admin has full access; Author can edit config and process documents but cannot manage users or delete config versions; Viewer has read-only access (editors, save buttons, and edit mode all disabled); Reviewer sees only HITL-pending documents. Non-admin roles can be scoped to specific use cases via `allowedConfigVersions`. See `docs/rbac.md`.
1213

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.5.2.4
1+
0.5.2

lib/idp_cli_pkg/idp_cli/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ def _display_deployment_failure(deployer, stack_name: str, result: dict):
209209

210210

211211
@click.group()
212-
@click.version_option(version="0.5.2.4")
212+
@click.version_option(version="0.5.2")
213213
def cli():
214214
"""
215215
IDP CLI - Batch document processing for IDP Accelerator

lib/idp_cli_pkg/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta"
77

88
[project]
99
name = "idp-cli"
10-
version = "0.5.2.4"
10+
version = "0.5.2"
1111
description = "Command-line interface for IDP Accelerator batch document processing"
1212
authors = [{name = "AWS"}]
1313
license = {text = "MIT-0"}

lib/idp_common_pkg/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ exclude = [
2020

2121
[project]
2222
name = "idp_common"
23-
version = "0.5.2.4"
23+
version = "0.5.2"
2424
description = "Common utilities for GenAI IDP Accelerator patterns"
2525
authors = [{ name = "AWS", email = "noreply@amazon.com" }]
2626
requires-python = ">=3.10,<3.14"

lib/idp_common_pkg/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@
117117

118118
setup(
119119
name="idp_common",
120-
version="0.5.2.4",
120+
version="0.5.2",
121121
packages=find_packages(
122122
exclude=[
123123
"build",

lib/idp_sdk/idp_sdk/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@
9191
StopWorkflowsResult,
9292
)
9393

94-
__version__ = "0.5.2.4"
94+
__version__ = "0.5.2"
9595

9696
__all__ = [
9797
# Client

lib/idp_sdk/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta"
77

88
[project]
99
name = "idp-sdk"
10-
version = "0.5.2.4"
10+
version = "0.5.2"
1111
description = "Python SDK for IDP Accelerator - programmatic access to document processing capabilities"
1212
authors = [{name = "AWS"}]
1313
license = {text = "MIT-0"}

0 commit comments

Comments
 (0)