fix: Update version to 0.1.0 in configuration files and tests
This commit is contained in:
parent
0d9464854d
commit
fb82d8d612
4 changed files with 13 additions and 3 deletions
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
# Application
|
||||
APP_NAME=WebDrop Bridge
|
||||
APP_VERSION=1.0.0
|
||||
APP_VERSION=0.1.0
|
||||
APP_ENV=development
|
||||
|
||||
# Web App
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue