Skip to content

Commit b797d6e

Browse files
committed
fix: Remove optimization summary file and fix YAML syntax errors
- Removed docs/GITHUB_ACTIONS_OPTIMIZATION.md (violates documentation standards) - Fixed duplicate 'path:' entries in GitHub Actions workflow - All YAML files now pass syntax validation - Following proper Python documentation best practices
1 parent d3a009d commit b797d6e

File tree

3 files changed

+14
-4
lines changed

3 files changed

+14
-4
lines changed

.github/workflows/build-cross-platform.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -114,9 +114,6 @@ jobs:
114114
dist/RoutePlanner.exe
115115
dist/RoutePlanner-*.zip
116116
retention-days: 30
117-
path: |
118-
dist/RoutePlanner.exe
119-
dist/RoutePlanner-*.zip
120117

121118
build-python-package:
122119
name: Build Python Package

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
*All Windows executables and cross-platform packages are automatically built and published using GitHub Actions.*
99

10+
## [1.1.4] - 2025-06-06
11+
12+
### Changed
13+
- **Optimized GitHub Actions Workflow**: Updated to latest action versions and improved performance
14+
- **Enhanced Security**: Added proper permissions and error handling to CI/CD pipeline
15+
- **Improved Build Efficiency**: Better caching strategy and reduced workflow execution time
16+
- **Modern Release Process**: Replaced deprecated upload methods with modern gh CLI
17+
18+
### Technical Improvements
19+
- Updated to checkout@v4, setup-python@v5, and other latest action versions
20+
- Enhanced cross-platform build optimization and reliability
21+
- Streamlined release asset upload process
22+
1023
## [1.1.3] - 2025-06-05
1124

1225
### Added

route_planner/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
and comprehensive offline support.
77
"""
88

9-
__version__ = "1.1.3"
9+
__version__ = "1.1.4"
1010
__author__ = "Route Planner Development Team"
1111

1212
# Ensure config is available at package level

0 commit comments

Comments
 (0)