diff --git a/README.md b/README.md
index 855c6903..cc0134e0 100644
--- a/README.md
+++ b/README.md
@@ -16,11 +16,11 @@
# Transcoder
-Transcodes and compresses video files into the MP4 format, with audio support, using hardware-accelerated
+Transcodes and compresses video files into the MP4 format, with audio support, using hardware-accelerated
Android codecs available on the device. Works on API 18+.
```groovy
-implementation 'com.otaliastudios:transcoder:0.9.1'
+implementation 'com.otaliastudios:transcoder:0.10.0'
```
- Fast transcoding to AAC/AVC
diff --git a/demo/src/main/AndroidManifest.xml b/demo/src/main/AndroidManifest.xml
index ecec89b6..3b363c11 100644
--- a/demo/src/main/AndroidManifest.xml
+++ b/demo/src/main/AndroidManifest.xml
@@ -18,6 +18,7 @@
android:name=".TranscoderActivity"
android:label="Transcoder">
+
@@ -26,7 +27,6 @@
android:name=".ThumbnailerActivity"
android:label="Thumbnailer">
-
diff --git a/docs/_about/changelog.md b/docs/_about/changelog.md
index 97800400..bb46cb31 100644
--- a/docs/_about/changelog.md
+++ b/docs/_about/changelog.md
@@ -9,6 +9,16 @@ New versions are released through GitHub, so the reference page is the [GitHub R
> Starting from 0.7.0, you can now [support development](https://github.com/sponsors/natario1) through the GitHub Sponsors program.
Companies can share a tiny part of their revenue and get private support hours in return. Thanks!
+### v0.10.0
+
+> Transcoder is now distributed through Maven Central. Snapshot releases are available as well.
+
+- New: thumbnails support ([#119][119])
+- Improvement: rewritten transcoding pipeline ([#118][118])
+- Fix: many bugs fixed while rewriting the pipeline ([#118][118])
+
+
+
### v0.9.1
- Improvement: `DefaultDataSink` new constructor with support for FileDescriptor. ([#87][87])
@@ -123,4 +133,6 @@ frames, the trim timestamp might be different than what was selected.
[54]: https://github.com/natario1/Transcoder/pull/54
[61]: https://github.com/natario1/Transcoder/pull/61
[64]: https://github.com/natario1/Transcoder/pull/64
-[87]: https://github.com/natario1/Transcoder/pull/87
\ No newline at end of file
+[87]: https://github.com/natario1/Transcoder/pull/87
+[118]: https://github.com/natario1/Transcoder/pull/118
+[119]: https://github.com/natario1/Transcoder/pull/119
\ No newline at end of file
diff --git a/docs/_config.yml b/docs/_config.yml
index 35aaeb39..b8d58930 100644
--- a/docs/_config.yml
+++ b/docs/_config.yml
@@ -12,7 +12,7 @@ google_analytics_id: 'UA-155077779-2'
google_site_verification: '4x49i17ABIrSvUl52SeL0-t0341aTnWWaC62-FYCRT4'
github: [metadata] # TODO What's this?
github_repo: Transcoder
-github_version: 0.9.1
+github_version: 0.10.0
github_branch: main
baseurl: '/Transcoder' # Keep as an empty string if served up at the root
collections:
diff --git a/lib/build.gradle.kts b/lib/build.gradle.kts
index d142d573..c015baee 100644
--- a/lib/build.gradle.kts
+++ b/lib/build.gradle.kts
@@ -15,7 +15,7 @@ android {
setMinSdkVersion(property("minSdkVersion") as Int)
setTargetSdkVersion(property("targetSdkVersion") as Int)
versionCode = 1
- versionName = "0.9.1"
+ versionName = "0.10.0"
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes["release"].isMinifyEnabled = false