From fb82d8d6124ab8530ff78940e86237ffcc2f578a Mon Sep 17 00:00:00 2001 From: claudi Date: Fri, 30 Jan 2026 09:19:03 +0100 Subject: [PATCH] fix: Update version to 0.1.0 in configuration files and tests --- .env.example | 2 +- CHANGELOG.md | 8 ++++++++ src/webdrop_bridge/__init__.py | 2 +- tests/unit/test_config.py | 4 +++- 4 files changed, 13 insertions(+), 3 deletions(-) diff --git a/.env.example b/.env.example index 2b750df..0e9c0f0 100644 --- a/.env.example +++ b/.env.example @@ -2,7 +2,7 @@ # Application APP_NAME=WebDrop Bridge -APP_VERSION=1.0.0 +APP_VERSION=0.1.0 APP_ENV=development # Web App diff --git a/CHANGELOG.md b/CHANGELOG.md index f2e354f..5ab950f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## [0.1.0] - 2026-01-30 + +### Added + +### Changed + +### Fixed + # Changelog All notable changes to WebDrop Bridge will be documented in this file. diff --git a/src/webdrop_bridge/__init__.py b/src/webdrop_bridge/__init__.py index 5631cf7..a488cd1 100644 --- a/src/webdrop_bridge/__init__.py +++ b/src/webdrop_bridge/__init__.py @@ -1,6 +1,6 @@ """WebDrop Bridge - Qt-based desktop application for intelligent drag-and-drop file handling.""" -__version__ = "1.0.0" +__version__ = "0.1.0" __author__ = "WebDrop Team" __license__ = "MIT" diff --git a/tests/unit/test_config.py b/tests/unit/test_config.py index 10ff76d..c8f569f 100644 --- a/tests/unit/test_config.py +++ b/tests/unit/test_config.py @@ -70,7 +70,9 @@ class TestConfigFromEnv: config = Config.from_env(str(env_file)) assert config.app_name == "WebDrop Bridge" - assert config.app_version == "1.0.0" + # Version should come from __init__.py (dynamic, not hardcoded) + from webdrop_bridge import __version__ + assert config.app_version == __version__ assert config.log_level == "INFO" assert config.window_width == 1024 assert config.window_height == 768