ffmpeg_core 0.6.0 → 0.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 83185cde1635bd7362c737cba6da5c723be5407cd7457ea5bbac2e0b43206365
4
- data.tar.gz: bf4dea2ee0d08d1e8af7b8193cef697f2b8dc1fcda8f5d86efed89e1d23c8f4e
3
+ metadata.gz: 9dfac0fb093930e421d6ec54c38d556bbcf7f9e1c9f39ee58a6f800e6fb0c141
4
+ data.tar.gz: 903666564a8c8ba69886f9f13214f542648d058733e5992d4089654e0e359c8e
5
5
  SHA512:
6
- metadata.gz: fbe0cf4fd2b09c72c143aeeb1281889f7291e816d7602c6d12852503f647fbc71100e106cf41c33c5e76b9728258d3ecc547b1407632748b6512e92086376265
7
- data.tar.gz: 056ea62e71626ac7969cee7242fb14936b15aa9098311b631c36f14c87c61289f6da48a41e99e7745fb7032965a3550d9f1c59e56969b43bba6af33f4b25977f
6
+ metadata.gz: 6c55d4c0e69ec520b96d63d932589b93defef1764aff38d85f745d0dd503fd7277e064e51c05ce1e252f9d020a5fb0b4349a77673026bf13330c3d33ecd3604d
7
+ data.tar.gz: 458001861f4d6b49515d2521b7d1ee9e0a937a46a0816b927daa8e2d9374b32cba76f70d1d98c138332e69c7b4cbb1f8e62b97ba26a8168620012ea99ba0164b
data/CHANGELOG.md CHANGED
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [0.7.0] - 2026-07-15
9
+
10
+ ### Changed
11
+
12
+ - **Breaking:** minimum supported Ruby version raised from 3.2 to 3.3 (`required_ruby_version` in gemspec, CI matrix). If you are on Ruby 3.2, stay on ffmpeg_core 0.6.x or upgrade Ruby.
13
+ - Development dependencies updated (standard 1.55, simplecov 1.0, rubocop-rspec 3.10, lefthook 2.1.10, etc.)
14
+
8
15
  ## [0.6.0] - 2026-04-14
9
16
 
10
17
  ### Added
data/README.md CHANGED
@@ -32,7 +32,7 @@ Modern Ruby wrapper for FFmpeg with clean API and proper error handling.
32
32
 
33
33
  ## Requirements
34
34
 
35
- - Ruby 3.2+
35
+ - Ruby 3.3+
36
36
  - FFmpeg installed (`brew install ffmpeg` on macOS)
37
37
 
38
38
  ## Installation
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module FFmpegCore
4
- VERSION = "0.6.0"
4
+ VERSION = "0.7.0"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ffmpeg_core
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alexey Poimtsev
@@ -63,14 +63,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
63
63
  requirements:
64
64
  - - ">="
65
65
  - !ruby/object:Gem::Version
66
- version: 3.2.0
66
+ version: 3.3.0
67
67
  required_rubygems_version: !ruby/object:Gem::Requirement
68
68
  requirements:
69
69
  - - ">="
70
70
  - !ruby/object:Gem::Version
71
71
  version: '0'
72
72
  requirements: []
73
- rubygems_version: 4.0.10
73
+ rubygems_version: 4.0.16
74
74
  specification_version: 4
75
75
  summary: Modern Ruby wrapper for FFmpeg
76
76
  test_files: []