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

Commit 8bae96a

Browse files
committed
release flutter v6.0.2
1 parent 05c38dc commit 8bae96a

File tree

7 files changed

+17
-9
lines changed

7 files changed

+17
-9
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.2
2+
- Bug fix release based on native v6.0
3+
- Fixes version information in podspec and gradle files
4+
5+
## 6.0.2-LTS
6+
- Bug fix release based on native v6.0.LTS
7+
- Fixes version information in podspec and gradle files
8+
19
## 6.0.1
210
- Bug fix release based on native v6.0
311
- Fixes issues 804 and 809

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.1
38+
ffmpeg_kit_flutter: 6.0.2
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.1
61+
ffmpeg_kit_flutter_<package name>: 6.0.2
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.1-LTS
73+
ffmpeg_kit_flutter: 6.0.2-LTS
7474
```
7575

7676
#### 2.4 LTS Releases

flutter/flutter/android/build.gradle

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

3636
buildTypes {

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.0'
3+
s.version = '6.0.2'
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/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.0";
102+
static String getVersion() => "6.0.2";
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.0'
3+
s.version = '6.0.2'
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.1
6+
version: 6.0.2
77

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

0 commit comments

Comments
 (0)