Bump version to 4.1.3
- Version bump from 4.1.2 to 4.1.3 - Updated CHANGELOG with SSL cert fix as highlight - Added *.img.zst.zip to .gitignore 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -80,3 +80,4 @@ tests/
|
|||||||
*.img.xz
|
*.img.xz
|
||||||
*.img.zst
|
*.img.zst
|
||||||
pishrink.sh
|
pishrink.sh
|
||||||
|
*.img.zst.zip
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ All notable changes to Stegasoo will be documented in this file.
|
|||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
||||||
and this project adheres to [Semantic Versioning](https://semver.org).
|
and this project adheres to [Semantic Versioning](https://semver.org).
|
||||||
|
|
||||||
## [4.1.2] - 2026-01-05
|
## [4.1.3] - 2026-01-05
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
- **Docker Deployment**: Production-ready containerization
|
- **Docker Deployment**: Production-ready containerization
|
||||||
@@ -28,6 +28,7 @@ and this project adheres to [Semantic Versioning](https://semver.org).
|
|||||||
- Validation, generation, compression, edge cases
|
- Validation, generation, compression, edge cases
|
||||||
- 29 tests covering core library functionality
|
- 29 tests covering core library functionality
|
||||||
- **Release Validation**: `scripts/validate-release.sh` for pre-release checks
|
- **Release Validation**: `scripts/validate-release.sh` for pre-release checks
|
||||||
|
- **Custom SSL Documentation**: Guide for replacing certs, Let's Encrypt setup
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
- Pi MOTD shows CPU speed and temperature when overclocked
|
- Pi MOTD shows CPU speed and temperature when overclocked
|
||||||
@@ -36,9 +37,11 @@ and this project adheres to [Semantic Versioning](https://semver.org).
|
|||||||
- Setup script uses pyenv for Python 3.12 (Pi OS ships 3.13)
|
- Setup script uses pyenv for Python 3.12 (Pi OS ships 3.13)
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
- **SSL certificate generation**: Wizard and setup now generate certs when HTTPS enabled
|
||||||
- DCT decode reliability improvements
|
- DCT decode reliability improvements
|
||||||
- Fixed `gum --inline` flag compatibility (not supported in all versions)
|
- Fixed `gum --inline` flag compatibility (not supported in all versions)
|
||||||
- Wizard banner alignment and spacing issues
|
- Wizard banner alignment and spacing issues
|
||||||
|
- Better error handling in app.py for SSL failures
|
||||||
|
|
||||||
## [4.1.0] - 2026-01-04
|
## [4.1.0] - 2026-01-04
|
||||||
|
|
||||||
@@ -177,7 +180,7 @@ and this project adheres to [Semantic Versioning](https://semver.org).
|
|||||||
- CLI interface
|
- CLI interface
|
||||||
- Basic PIN authentication
|
- Basic PIN authentication
|
||||||
|
|
||||||
[4.1.2]: https://github.com/adlee-was-taken/stegasoo/compare/v4.1.0...v4.1.2
|
[4.1.3]: https://github.com/adlee-was-taken/stegasoo/compare/v4.1.0...v4.1.3
|
||||||
[4.1.0]: https://github.com/adlee-was-taken/stegasoo/compare/v4.0.2...v4.1.0
|
[4.1.0]: https://github.com/adlee-was-taken/stegasoo/compare/v4.0.2...v4.1.0
|
||||||
[4.0.2]: https://github.com/adlee-was-taken/stegasoo/compare/v4.0.1...v4.0.2
|
[4.0.2]: https://github.com/adlee-was-taken/stegasoo/compare/v4.0.1...v4.0.2
|
||||||
[4.0.1]: https://github.com/adlee-was-taken/stegasoo/compare/v4.0.0...v4.0.1
|
[4.0.1]: https://github.com/adlee-was-taken/stegasoo/compare/v4.0.0...v4.0.1
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ Changes in v4.0.0:
|
|||||||
- encode() and decode() now accept channel_key parameter
|
- encode() and decode() now accept channel_key parameter
|
||||||
"""
|
"""
|
||||||
|
|
||||||
__version__ = "4.1.2"
|
__version__ = "4.1.3"
|
||||||
|
|
||||||
# Core functionality
|
# Core functionality
|
||||||
# Channel key management (v4.0.0)
|
# Channel key management (v4.0.0)
|
||||||
|
|||||||
@@ -25,7 +25,7 @@ from pathlib import Path
|
|||||||
# VERSION
|
# VERSION
|
||||||
# ============================================================================
|
# ============================================================================
|
||||||
|
|
||||||
__version__ = "4.1.2"
|
__version__ = "4.1.3"
|
||||||
|
|
||||||
# ============================================================================
|
# ============================================================================
|
||||||
# FILE FORMAT
|
# FILE FORMAT
|
||||||
|
|||||||
Reference in New Issue
Block a user