From a7ef66ea63ddf20dd78f23f62da3efaba41d3f8d Mon Sep 17 00:00:00 2001 From: Mattia Iavarone Date: Sat, 2 Mar 2019 20:29:50 +0100 Subject: [PATCH] Bump version to 1.5.1 (#93) --- CHANGELOG.md | 21 ++++++++++++++++++++- README.md | 2 +- library/build.gradle | 4 ++-- 3 files changed, 23 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 51a8dc0..2f10b4b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +## v1.5.1 + +- Fix: fix a context leak in ZoomLayout thanks to [@dmazzoni][dmazzoni] ([#92][92]). +- Fix: fix a bug in vertical Alignment thanks to leak in ZoomLayout thanks to [@asclepix][asclepix] ([#90][90]). +- Enhancement: cancel active fling animations thanks to [@markusressel][markusressel] ([#85][85]). +- Fix: fix Kotlin nullability crashes thanks to [@Sly112][Sly112] ([#83][83]). +- Fix: sources not present in published repo ([#81][81]). + + +https://github.com/natario1/ZoomLayout/compare/v1.5.0...v1.5.1 + ## v1.5.0 - New: Project source code was fully translated to Kotlin thanks to [@markusressel][markusressel] ([#38][38]). @@ -14,10 +25,18 @@ https://github.com/natario1/ZoomLayout/compare/v1.4.0...v1.5.0 [markusressel]: https://github.com/markusressel [nil2l]: https://github.com/nil2l [LRP-sgravel]: https://github.com/LRP-sgravel +[dmazzoni]: https://github.com/dmazzoni +[asclepix]: https://github.com/asclepix +[Sly112]: https://github.com/Sly112 [38]: https://github.com/natario1/ZoomLayout/pull/38 [70]: https://github.com/natario1/ZoomLayout/pull/70 [68]: https://github.com/natario1/ZoomLayout/pull/68 [79]: https://github.com/natario1/ZoomLayout/pull/79 [71]: https://github.com/natario1/ZoomLayout/pull/71 -[76]: https://github.com/natario1/ZoomLayout/pull/76 \ No newline at end of file +[76]: https://github.com/natario1/ZoomLayout/pull/76 +[81]: https://github.com/natario1/ZoomLayout/pull/81 +[83]: https://github.com/natario1/ZoomLayout/pull/83 +[85]: https://github.com/natario1/ZoomLayout/pull/85 +[90]: https://github.com/natario1/ZoomLayout/pull/90 +[92]: https://github.com/natario1/ZoomLayout/pull/92 \ No newline at end of file diff --git a/README.md b/README.md index 9043fe8..456d258 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ Flexible utilities to control and animate zoom and translation of Views and much programmatically or through touch events. ```groovy -implementation 'com.otaliastudios:zoomlayout:1.5.0' +implementation 'com.otaliastudios:zoomlayout:1.5.1' ```

diff --git a/library/build.gradle b/library/build.gradle index 0ef46a2..bd6859f 100644 --- a/library/build.gradle +++ b/library/build.gradle @@ -18,7 +18,7 @@ ext { // Required by bintray // archivesBaseName is required if artifactId is different from gradle module name // or you can add baseName to each archive task (sources, javadoc, aar) -version = '1.5.0' +version = '1.5.1' group = 'com.otaliastudios' archivesBaseName = 'zoomlayout' @@ -35,7 +35,7 @@ android { } dependencies { - api "androidx.annotation:annotation:1.0.1" + api "androidx.annotation:annotation:1.0.2" api "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" testImplementation "org.junit.jupiter:junit-jupiter-api:5.3.1"