From 424e251e5670f9bf66c3d5b2fdb58d15478346f6 Mon Sep 17 00:00:00 2001 From: Zsolt Kozaroczy Date: Mon, 4 Nov 2024 11:58:27 +0100 Subject: [PATCH] chore: update version to 6.1.1 and document changes --- CHANGELOG | 8 +++++++- lib/ffmpeg/version.rb | 2 +- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 31b2575..524f211 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,8 +1,14 @@ +== 6.1.1 2024-11-04 + +Fixes: +* MOV files processed in iMovie should not be marked as audio with attached picture + == 6.1.0 2024-10-24 + * Added new `default?` and `attached_pic?` helper methods to FFMPEG::Stream objects * Added new `audio_with_attached_pic?` helper method to FFMPEG::Media objects -== 6.0.2 2024-06-19 +== 6.0.3 2024-06-19 Fixes: * Fixed a possible race condition that would cause the transcoder to time out even if the transcoder was still running diff --git a/lib/ffmpeg/version.rb b/lib/ffmpeg/version.rb index 8484cfe..1d2d847 100644 --- a/lib/ffmpeg/version.rb +++ b/lib/ffmpeg/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module FFMPEG - VERSION = '6.1.0' + VERSION = '6.1.1' end