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 +4 -4
- data/CHANGELOG.md +7 -0
- data/README.md +1 -1
- data/lib/ffmpeg_core/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9dfac0fb093930e421d6ec54c38d556bbcf7f9e1c9f39ee58a6f800e6fb0c141
|
|
4
|
+
data.tar.gz: 903666564a8c8ba69886f9f13214f542648d058733e5992d4089654e0e359c8e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
data/lib/ffmpeg_core/version.rb
CHANGED
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.
|
|
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.
|
|
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.
|
|
73
|
+
rubygems_version: 4.0.16
|
|
74
74
|
specification_version: 4
|
|
75
75
|
summary: Modern Ruby wrapper for FFmpeg
|
|
76
76
|
test_files: []
|