From 4ab9ce341d6c0be47122de3c6a354cf0ab4f3e29 Mon Sep 17 00:00:00 2001 From: Markus Ressel Date: Tue, 4 Jun 2019 16:38:33 +0200 Subject: [PATCH] bump version to 1.6.1 (#106) --- CHANGELOG.md | 17 ++++++++++++++++- README.md | 2 +- library/build.gradle | 2 +- 3 files changed, 18 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8adb64c..ebd076a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +### v1.6.1 + +- Enhancement: Internal refactoring into smaller components [@natario1][natario1] ([#97][97]) +- Enhancement: Added scrollEnabled, oneFingerScrollEnabled, twoFingersScrollEnabled and threeFingersScrollEnabled [@RayyanTahir][RayyanTahir] ([#102][102]) +- Fix: fixed invalid use of `setContentRect` in README [@r4zzz4k][r4zzz4k] ([#105][105]) + +https://github.com/natario1/ZoomLayout/compare/v1.6.0...v1.6.1 + ### v1.6.0 - Introduces ZoomSurfaceView, a zoomable and pannable Surface container. Please read docs for usage ([#94][94]). @@ -28,12 +36,16 @@ https://github.com/natario1/ZoomLayout/compare/v1.5.0...v1.5.1 https://github.com/natario1/ZoomLayout/compare/v1.4.0...v1.5.0 +[natario1]: https://github.com/natario1 [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 +[RayyanTahir]: https://github.com/RayyanTahir +[r4zzz4k]: https://github.com/r4zzz4k + [38]: https://github.com/natario1/ZoomLayout/pull/38 [70]: https://github.com/natario1/ZoomLayout/pull/70 @@ -46,4 +58,7 @@ https://github.com/natario1/ZoomLayout/compare/v1.4.0...v1.5.0 [85]: https://github.com/natario1/ZoomLayout/pull/85 [90]: https://github.com/natario1/ZoomLayout/pull/90 [92]: https://github.com/natario1/ZoomLayout/pull/92 -[94]: https://github.com/natario1/ZoomLayout/pull/94 \ No newline at end of file +[94]: https://github.com/natario1/ZoomLayout/pull/94 +[97]: https://github.com/natario1/ZoomLayout/pull/97 +[102]: https://github.com/natario1/ZoomLayout/pull/102 +[105]: https://github.com/natario1/ZoomLayout/pull/105 \ No newline at end of file diff --git a/README.md b/README.md index 76cde40..ed7cf7b 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.6.0' +implementation 'com.otaliastudios:zoomlayout:1.6.1' ```

diff --git a/library/build.gradle b/library/build.gradle index 02d275a..10d0295 100644 --- a/library/build.gradle +++ b/library/build.gradle @@ -5,7 +5,7 @@ apply plugin: 'com.github.dcendents.android-maven' apply plugin: 'com.jfrog.bintray' ext { - libVersion = '1.6.0' + libVersion = '1.6.1' libGroup = 'com.otaliastudios' libName = 'ZoomLayout' libDescription = 'A View container that supports zooming and panning of View hierarchies, images and more.'