Skip to content

Commit 0ad9026

Browse files
committed
chore(release): bump version to 0.3.0-rc.4
1 parent e574652 commit 0ad9026

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.4] - 2026-06-25
16+
1517
### Changed
1618
- **Versioning & changelog workflow is now local-first by default.** `docs/RELEASE_PROCESS.md` and `docs/DEVELOPMENT.md` updated: `version_manager.py --git` (stage + commit + tag locally) is the default stop point; `--push` (publishes to every remote + triggers CI/CD) is opt-in and only used when explicitly requested. A prominent push-policy callout was added to `RELEASE_PROCESS.md`. All examples and quick checklists reordered to show the local-only path first.
1719
- **Changelog rule made explicit** in `docs/DEVELOPMENT.md` and `docs/RELEASE_PROCESS.md`: every user-visible change must add a bullet under `## [Unreleased]` at commit time, proactively.

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.3-blue.svg)](https://github.com/health-assistant-io/health-assistant/releases)
6+
[![Version](https://img.shields.io/badge/version-v0.3.0--rc.4-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.3"
40+
VERSION: str = "0.3.0-rc.4"
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.3",
3+
"version": "0.3.0-rc.4",
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.3<br />
124+
Health Assistant Version 0.3.0-rc.4<br />
125125
© 2026 Ilias Chatzopoulos. All rights reserved.
126126
</p>
127127
</div>

0 commit comments

Comments
 (0)