Skip to content

Commit a777673

Browse files
committed
chore(release): bump version to 0.3.0-rc.3
1 parent e13fc90 commit a777673

6 files changed

Lines changed: 8 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1212
1313
## [Unreleased]
1414

15+
## [0.3.0-rc.3] - 2026-06-25
16+
1517
### Security
1618
- **All 58 Dependabot alerts resolved** (1 critical, 26 high, 28 moderate, 3 low) across backend (pip) and frontend (npm). `npm audit` now reports 0 vulnerabilities.
1719
- **Backend: replaced unmaintained `python-jose` with `PyJWT`** (CVE-2024-33664/33663 — algorithm confusion, DoS). `ecdsa`, `rsa`, and `passlib` (transitive deps of python-jose, unused in code) removed entirely. `security.py` updated: `JWTError``jwt.PyJWTError`.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Health Assistant
44
### Universal Health Data Platform
55

6-
[![Version](https://img.shields.io/badge/version-v0.3.0--rc.2-blue.svg)](https://github.com/health-assistant-io/health-assistant/releases)
6+
[![Version](https://img.shields.io/badge/version-v0.3.0--rc.3-blue.svg)](https://github.com/health-assistant-io/health-assistant/releases)
77
[![Status](https://img.shields.io/badge/status-beta-orange.svg)](#)
88
[![License](https://img.shields.io/badge/license-Apache%202.0-green.svg)](LICENSE)
99
[![Platform](https://img.shields.io/badge/platform-Linux%20%7C%20Docker%20%7C%20Self--Hosted-lightgrey.svg)](#)

backend/app/core/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def _resolve_env_file() -> Optional[str]:
3737
class Settings(BaseSettings):
3838
# Application
3939
APP_NAME: str = "Health Assistant"
40-
VERSION: str = "0.3.0-rc.2"
40+
VERSION: str = "0.3.0-rc.3"
4141
APP_ENV: str = "development"
4242
DEBUG: bool = False
4343

frontend/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

frontend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "health-assistant",
3-
"version": "0.3.0-rc.2",
3+
"version": "0.3.0-rc.3",
44
"description": "Universal Health Data Platform",
55
"scripts": {
66
"dev": "vite",

frontend/src/pages/About/AboutPage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ const AboutPage = () => {
121121
{/* Version Info */}
122122
<div className="text-center pt-4">
123123
<p className="text-gray-400 dark:text-dark-muted text-xs">
124-
Health Assistant Version 0.3.0-rc.2<br />
124+
Health Assistant Version 0.3.0-rc.3<br />
125125
© 2026 Ilias Chatzopoulos. All rights reserved.
126126
</p>
127127
</div>

0 commit comments

Comments
 (0)