Skip to content

Commit bf4ce2c

Browse files
committed
Release v0.10.3
1 parent a357d09 commit bf4ce2c

File tree

4 files changed

+13
-4
lines changed

4 files changed

+13
-4
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Transcodes and compresses video files into the MP4 format, with audio support, u
2020
Android codecs available on the device. Works on API 18+.
2121

2222
```groovy
23-
implementation 'com.otaliastudios:transcoder:0.10.2'
23+
implementation 'com.otaliastudios:transcoder:0.10.3'
2424
```
2525

2626
- Fast transcoding to AAC/AVC

docs/_about/changelog.md

+10-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,13 @@ New versions are released through GitHub, so the reference page is the [GitHub R
99
> Starting from 0.7.0, you can now [support development](https://github.com/sponsors/natario1) through the GitHub Sponsors program.
1010
Companies can share a tiny part of their revenue and get private support hours in return. Thanks!
1111

12+
### v0.10.3
13+
14+
- Fix: error when merging many files, thanks to [@DamonChen117][DamonChen117] ([#134][134])
15+
- Fix: more concatenation issues
16+
17+
<https://github.com/natario1/Transcoder/compare/v0.10.2...v0.10.3>
18+
1219
### v0.10.2
1320

1421
- Fix: error when merging many files ([#132][132])
@@ -126,6 +133,7 @@ frames, the trim timestamp might be different than what was selected.
126133
[aweck]: https://github.com/aweck
127134
[mudar]: https://github.com/mudar
128135
[cbernier2]: https://github.com/cbernier2
136+
[DamonChen117]: https://github.com/DamonChen117
129137

130138
[4]: https://github.com/natario1/Transcoder/pull/4
131139
[5]: https://github.com/natario1/Transcoder/pull/5
@@ -155,4 +163,5 @@ frames, the trim timestamp might be different than what was selected.
155163
[127]: https://github.com/natario1/Transcoder/pull/127
156164
[128]: https://github.com/natario1/Transcoder/pull/128
157165
[130]: https://github.com/natario1/Transcoder/pull/130
158-
[132]: https://github.com/natario1/Transcoder/pull/132
166+
[132]: https://github.com/natario1/Transcoder/pull/132
167+
[134]: https://github.com/natario1/Transcoder/pull/134

docs/_config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ google_analytics_id: 'UA-155077779-2'
1212
google_site_verification: '4x49i17ABIrSvUl52SeL0-t0341aTnWWaC62-FYCRT4'
1313
github: [metadata] # TODO What's this?
1414
github_repo: Transcoder
15-
github_version: 0.10.2
15+
github_version: 0.10.3
1616
github_branch: main
1717
baseurl: '/Transcoder' # Keep as an empty string if served up at the root
1818
collections:

lib/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ android {
1515
setMinSdkVersion(property("minSdkVersion") as Int)
1616
setTargetSdkVersion(property("targetSdkVersion") as Int)
1717
versionCode = 1
18-
versionName = "0.10.2"
18+
versionName = "0.10.3"
1919
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
2020
}
2121
buildTypes["release"].isMinifyEnabled = false

0 commit comments

Comments
 (0)