diff --git a/CHANGELOG.md b/CHANGELOG.md index b44b529..bc17029 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Nothing yet +## [1.5.2] - 2024-11-05 + +### Fixed + +- Segment size bug for ECCP encryption (introduced in v1.5.1) +- `--timeout` parameter not working. Changed to `--timeoutS` + ## [1.5.1] - 2024-11-01 ### Added @@ -270,7 +277,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - features and URLs listed at livesim2 root page - configurable generated stpp subtitles with timing info -[Unreleased]: https://github.com/Dash-Industry-Forum/livesim2/compare/v1.5.1...HEAD +[Unreleased]: https://github.com/Dash-Industry-Forum/livesim2/compare/v1.5.2...HEAD +[1.5.2]: https://github.com/Dash-Industry-Forum/livesim2/compare/v1.5.1...v1.5.2 [1.5.1]: https://github.com/Dash-Industry-Forum/livesim2/compare/v1.5.0...v1.5.1 [1.5.0]: https://github.com/Dash-Industry-Forum/livesim2/compare/v1.4.1...v1.5.0 [1.4.1]: https://github.com/Dash-Industry-Forum/livesim2/compare/v1.4.0...v1.4.1 diff --git a/internal/version.go b/internal/version.go index e8e32bd..c5a7958 100644 --- a/internal/version.go +++ b/internal/version.go @@ -12,8 +12,8 @@ import ( ) var ( - commitVersion string = "v1.5.1" // Should be updated during build - commitDate string = "1730475277" // commitDate in Epoch seconds (can be filled/updated in during build) + commitVersion string = "v1.5.2" // Should be updated during build + commitDate string = "1730825548" // commitDate in Epoch seconds (can be filled/updated in during build) ) // GetVersion - get version, commitHash and commitDate depending on what is inserted