diff --git a/CHANGELOG.md b/CHANGELOG.md index 710a021..bb33265 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## [1.4.0] (2022-08-27) + +* Rewrite the BufferedRandomAccessFile so that the file gets closed between read. +* android-drawable now targets Android SDK 33 + ## [1.3.1] (2022-07-26) * Fix concurrency issue with the bitmap field in GifDrawable. diff --git a/buildSrc/src/main/kotlin/Publication.kt b/buildSrc/src/main/kotlin/Publication.kt index 97d670a..8e7dbfa 100644 --- a/buildSrc/src/main/kotlin/Publication.kt +++ b/buildSrc/src/main/kotlin/Publication.kt @@ -1,7 +1,7 @@ object Publication { const val GROUP = "app.redwarp.gif" - const val VERSION_CODE = 25 // Not necessary anymore, they are not used for libraries. - const val VERSION_NAME = "1.3.1" + const val VERSION_CODE = 26 // Not necessary as they are not used for libraries. + const val VERSION_NAME = "1.4.0" object Pom { const val URL = "https://github.com/redwarp/gifdecoder"