Skip to content
This repository was archived by the owner on Jun 23, 2025. It is now read-only.

Commit cd1e99c

Browse files
committed
release flutter v6.0.3
1 parent e243e86 commit cd1e99c

File tree

9 files changed

+21
-19
lines changed

9 files changed

+21
-19
lines changed

flutter/flutter/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## 6.0.3
2+
- Bug fix release based on native v6.0
3+
- Fixes issue 825
4+
5+
## 6.0.3-LTS
6+
- Bug fix release based on native v6.0.LTS
7+
- Fixes issue 825
8+
19
## 6.0.2
210
- Bug fix release based on native v6.0
311
- Fixes version information in podspec and gradle files

flutter/flutter/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Add `ffmpeg_kit_flutter` as a dependency in your `pubspec.yaml file`.
3535

3636
```yaml
3737
dependencies:
38-
ffmpeg_kit_flutter: 6.0.2
38+
ffmpeg_kit_flutter: 6.0.3
3939
```
4040
4141
#### 2.1 Packages
@@ -58,7 +58,7 @@ using the following dependency format.
5858

5959
```yaml
6060
dependencies:
61-
ffmpeg_kit_flutter_<package name>: 6.0.2
61+
ffmpeg_kit_flutter_<package name>: 6.0.3
6262
```
6363

6464
Note that hyphens in the package name must be replaced with underscores. Additionally, do not forget to use the package
@@ -70,7 +70,7 @@ In order to install the `LTS` variant, append `-LTS` to the version you have for
7070

7171
```yaml
7272
dependencies:
73-
ffmpeg_kit_flutter: 6.0.2-LTS
73+
ffmpeg_kit_flutter: 6.0.3-LTS
7474
```
7575

7676
#### 2.4 LTS Releases

flutter/flutter/analysis_options.yaml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
11
analyzer:
2-
enable-experiment:
3-
- non-nullable
4-
strong-mode:
5-
implicit-dynamic: false
62
errors:
73
missing_required_param: warning
84
missing_return: warning
@@ -27,10 +23,8 @@ linter:
2723
- file_names
2824
- hash_and_equals
2925
- implementation_imports
30-
- iterable_contains_unrelated_type
3126
- join_return_with_assignment
32-
- lines_longer_than_80_chars
33-
- list_remove_unrelated_type
27+
- collection_methods_unrelated_type
3428
- missing_whitespace_between_adjacent_strings
3529
- no_runtimeType_toString
3630
- non_constant_identifier_names

flutter/flutter/android/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ android {
2929
defaultConfig {
3030
minSdkVersion 24
3131
targetSdkVersion 33
32-
versionCode 602
33-
versionName "6.0.2"
32+
versionCode 603
33+
versionName "6.0.3"
3434
}
3535

3636
buildTypes {
@@ -49,5 +49,5 @@ android {
4949

5050
dependencies {
5151
implementation 'androidx.annotation:annotation:1.5.0'
52-
implementation 'com.arthenica:ffmpeg-kit-https:6.0-1'
52+
implementation 'com.arthenica:ffmpeg-kit-https:6.0-2'
5353
}

flutter/flutter/ios/ffmpeg_kit_flutter.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'ffmpeg_kit_flutter'
3-
s.version = '6.0.2'
3+
s.version = '6.0.3'
44
s.summary = 'FFmpeg Kit for Flutter'
55
s.description = 'A Flutter plugin for running FFmpeg and FFprobe commands.'
66
s.homepage = 'https://github.com/arthenica/ffmpeg-kit'

flutter/flutter/lib/abstract_session.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ abstract class AbstractSession extends Session {
6464
///
6565
/// Returns FFmpeg session created.
6666
static Future<FFmpegSession> createFFmpegSession(List<String> argumentsArray,
67-
[LogRedirectionStrategy? logRedirectionStrategy = null]) async {
67+
[LogRedirectionStrategy? logRedirectionStrategy]) async {
6868
try {
6969
await FFmpegKitConfig.init();
7070
final Map<dynamic, dynamic>? nativeSession =
@@ -118,7 +118,7 @@ abstract class AbstractSession extends Session {
118118
/// Returns FFprobe session created.
119119
static Future<FFprobeSession> createFFprobeSession(
120120
List<String> argumentsArray,
121-
[LogRedirectionStrategy? logRedirectionStrategy = null]) async {
121+
[LogRedirectionStrategy? logRedirectionStrategy]) async {
122122
try {
123123
await FFmpegKitConfig.init();
124124
final Map<dynamic, dynamic>? nativeSession =

flutter/flutter/lib/src/ffmpeg_kit_factory.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ class FFmpegKitFactory {
9999
}
100100
}
101101

102-
static String getVersion() => "6.0.2";
102+
static String getVersion() => "6.0.3";
103103

104104
static LogRedirectionStrategy? getLogRedirectionStrategy(int? sessionId) =>
105105
logRedirectionStrategyMap[sessionId];

flutter/flutter/macos/ffmpeg_kit_flutter.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'ffmpeg_kit_flutter'
3-
s.version = '6.0.2'
3+
s.version = '6.0.3'
44
s.summary = 'FFmpeg Kit for Flutter'
55
s.description = 'A Flutter plugin for running FFmpeg and FFprobe commands.'
66
s.homepage = 'https://github.com/arthenica/ffmpeg-kit'

flutter/flutter/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description: FFmpeg Kit for Flutter. Supports Android, iOS and macOS platforms.
33
repository: https://github.com/arthenica/ffmpeg-kit
44
issue_tracker: https://github.com/arthenica/ffmpeg-kit/issues
55
homepage: https://github.com/arthenica/ffmpeg-kit
6-
version: 6.0.2
6+
version: 6.0.3
77

88
environment:
99
sdk: ">=2.12.0 <4.0.0"

0 commit comments

Comments
 (0)