From 4e301d9810de7d10c4f7538cfc4e6244636f594d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torbj=C3=B6rn=20Einarson?= Date: Thu, 8 Aug 2024 20:54:21 +0200 Subject: [PATCH] docs: v0.46.0 --- CHANGELOG.md | 7 ++++++- mp4/version.go | 4 ++-- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 081f085e..8f78ea99 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.46.0] - 2024-08-08 + ### Fixed - mvhd, tkhd, and mdhd timestamps were off by one day @@ -631,7 +635,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.45.1...HEAD +[Unreleased]: https://github.com/Eyevinn/mp4ff/compare/v0.46.0...HEAD +[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 [0.44.0]: https://github.com/Eyevinn/mp4ff/compare/v0.43.0...v0.44.0 diff --git a/mp4/version.go b/mp4/version.go index 4b5c70c7..98755f6b 100644 --- a/mp4/version.go +++ b/mp4/version.go @@ -7,8 +7,8 @@ import ( ) var ( - commitVersion string = "v0.45.1" // May be updated using build flags - commitDate string = "1720779532" // commitDate in Epoch seconds (may be overridden using build flags) + commitVersion string = "v0.46" // May be updated using build flags + commitDate string = "1723143113" // commitDate in Epoch seconds (may be overridden using build flags) ) // GetVersion - get version and also commitHash and commitDate if inserted via Makefile