diff --git a/CHANGELOG.md b/CHANGELOG.md index 375c406..4913a02 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +- Nothing yet + +## [0.47.0] - 2024-11-12 + ### Changed - CreatePrftBox now takes flags parameter @@ -14,6 +18,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Removed ReplaceChild method of StsdBox - CreateHdlr name for timed metadata - extension .m4s is interpreted as MP4 file in mp4ff-pslister +- moved mp4.GetVersion() to internal.GetVersion() ### Added @@ -661,7 +666,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - New unique repo name: `mp4ff` -[Unreleased]: https://github.com/Eyevinn/mp4ff/compare/v0.46.0...HEAD +[Unreleased]: https://github.com/Eyevinn/mp4ff/compare/v0.47.0...HEAD +[0.47.0]: https://github.com/Eyevinn/mp4ff/compare/v0.46.0...v0.47.0 [0.46.0]: https://github.com/Eyevinn/mp4ff/compare/v0.45.1...v0.46.0 [0.45.1]: https://github.com/Eyevinn/mp4ff/compare/v0.45.0...v0.45.1 [0.45.0]: https://github.com/Eyevinn/mp4ff/compare/v0.44.0...v0.45.0 diff --git a/internal/version.go b/internal/version.go index 9814f42..1059511 100644 --- a/internal/version.go +++ b/internal/version.go @@ -7,7 +7,7 @@ import ( ) var ( - commitVersion string = "v0.46" // May be updated using build flags + commitVersion string = "v0.47" // May be updated using build flags commitDate string = "1731409630" // commitDate in Epoch seconds (may be overridden using build flags) ) diff --git a/internal/version_test.go b/internal/version_test.go index 41e3189..8e63799 100644 --- a/internal/version_test.go +++ b/internal/version_test.go @@ -4,5 +4,5 @@ import "fmt" func ExampleGetVersion() { fmt.Println(GetVersion()) - // Output: v0.46, date: 2024-11-12 + // Output: v0.47, date: 2024-11-12 }