Skip to content

Commit be2cbf1

Browse files
GeneAIclaude
authored andcommitted
release: Bump to v1.9.4 - Healthcare demo links and code quality fixes
- Healthcare Wizards navigation links to external dashboard - Added Dev Wizards link to wizards.smartaimemory.com - SBAR wizard demo with 5-step guided workflow - Live demo callouts in documentation - ESLint config for inline styles - Fixed unused variable warnings - Test coverage: 75.87% (1,489 tests pass) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent 687e1c8 commit be2cbf1

File tree

4 files changed

+24
-5
lines changed

4 files changed

+24
-5
lines changed

.claude/CLAUDE.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Empathy Framework - Production Security Configuration
22
# Location: ./.claude/CLAUDE.md
3-
# Project: empathy-framework v1.8.0-alpha
3+
# Project: empathy-framework v1.9.4
44
# Classification: INTERNAL
55

66
## Project Context
@@ -146,7 +146,7 @@ pytest tests/test_claude_memory.py -v
146146
"timestamp": "2025-11-24T03:30:00Z",
147147
"event_id": "evt_abc123",
148148
"project": "empathy-framework",
149-
"version": "1.8.0-alpha",
149+
"version": "1.9.4",
150150
"user_id": "[email protected]",
151151
"action": "llm_request",
152152

@@ -403,4 +403,4 @@ By working on this project, I confirm:
403403
404404
*This configuration enforces enterprise security while enabling the five-level empathy system.*
405405
*Last updated: 2025-11-24*
406-
*Empathy Framework v1.8.0-alpha*
406+
*Empathy Framework v1.9.4*

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,25 @@ All notable changes to the Empathy Framework will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.9.4] - 2025-11-30
9+
10+
### Changed
11+
12+
**Website Updates**
13+
- Healthcare Wizards navigation now links to external dashboard at healthcare.smartaimemory.com
14+
- Added Dev Wizards link to wizards.smartaimemory.com
15+
- SBAR wizard demo page with 5-step guided workflow
16+
17+
**Documentation**
18+
- Added live demo callouts to healthcare documentation pages
19+
- Updated docs/index.md, docs/guides/healthcare-wizards.md, docs/examples/sbar-clinical-handoff.md
20+
21+
**Code Quality**
22+
- Added ESLint rules to suppress inline style warnings for Tailwind CSS use cases
23+
- Fixed unused variable warnings (`isGenerating`, `theme`)
24+
- Fixed unescaped apostrophe JSX warnings
25+
- Test coverage: 75.87% (1,489 tests pass)
26+
827
## [1.9.3] - 2025-11-28
928

1029
### Changed

empathy_llm_toolkit/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
from .providers import AnthropicProvider, LocalProvider, OpenAIProvider
1616
from .state import CollaborationState, UserPattern
1717

18-
__version__ = "1.9.3"
18+
__version__ = "1.9.4"
1919

2020
__all__ = [
2121
"EmpathyLLM",

pyproject.toml

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

55
[project]
66
name = "empathy-framework"
7-
version = "1.9.3"
7+
version = "1.9.4"
88
description = "A five-level maturity model for AI-human collaboration with anticipatory empathy"
99
readme = {file = "README.md", content-type = "text/markdown"}
1010
requires-python = ">=3.10"

0 commit comments

Comments
 (0)