Skip to content

Commit

Permalink
Release v1.7.1 (#146)
Browse files Browse the repository at this point in the history
  • Loading branch information
natario1 authored Mar 4, 2020
1 parent 4d36565 commit 0e572bf
Show file tree
Hide file tree
Showing 5 changed files with 36 additions and 3 deletions.
26 changes: 26 additions & 0 deletions .github/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Configuration for probot-stale - https://github.com/probot/stale

# Number of days of inactivity before an Issue or Pull Request becomes stale
daysUntilStale: 20

# Number of days of inactivity before an Issue or Pull Request with the stale label is closed.
# Set to false to disable. If disabled, issues still need to be closed manually, but will remain marked as stale.
daysUntilClose: 7

# Issues or Pull Requests with these labels will never be considered stale. Set to `[]` to disable
exemptLabels:
- is:bug
- is:enhancement
- is:discussion

# Label to use when marking as stale
staleLabel: status:stale

# Comment to post when marking as stale. Set to `false` to disable
markComment: >
This issue has been automatically marked as stale because it has not had
activity in the last 20 days. It will be closed if no further activity
occurs within the next seven days. Thank you for your contributions.
# Limit to only `issues` or `pulls`
only: issues
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
### v1.7.1

- Enhancement: the Egloo library is now a declared dependency and you don't need to add it separately. ([#136][136])

https://github.com/natario1/ZoomLayout/compare/v1.7.0...v1.7.1

## v1.7.0

- BREAKING CHANGE: To use ZoomSurfaceView, you need to use `com.otaliastudios.opengl:egloo:0.2.3` instead of `com.otaliastudios.opengl:egl-core`. ([#114][114])
Expand Down Expand Up @@ -70,3 +76,4 @@ https://github.com/natario1/ZoomLayout/compare/v1.4.0...v1.5.0
[102]: https://github.com/natario1/ZoomLayout/pull/102
[105]: https://github.com/natario1/ZoomLayout/pull/105
[114]: https://github.com/natario1/ZoomLayout/pull/114
[136]: https://github.com/natario1/ZoomLayout/pull/136
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ A collection of flexible Android components that support zooming and panning of
images, video streams, and much more - either programmatically or through touch events.

```groovy
implementation 'com.otaliastudios:zoomlayout:1.7.0'
implementation 'com.otaliastudios:zoomlayout:1.7.1'
```

- `ZoomLayout`: a container that supports 2D pan and zoom to a View hierarchy, even supporting clicks [[docs]](https://natario1.github.io/ZoomLayout/docs/zoom-layout)
Expand Down
2 changes: 1 addition & 1 deletion docs/_about/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ allprojects {
Then simply download the latest version:

```groovy
implementation 'com.otaliastudios:zoomlayout:1.7.0'
implementation 'com.otaliastudios:zoomlayout:1.7.1'
```

No other configuration steps are needed.
2 changes: 1 addition & 1 deletion library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ apply plugin: 'com.github.dcendents.android-maven'
apply plugin: 'com.jfrog.bintray'

ext {
libVersion = '1.7.0'
libVersion = '1.7.1'
libGroup = 'com.otaliastudios'
libName = 'ZoomLayout'
libDescription = 'A collection of Android components that support zooming and panning of View hierarchies, images, video streams, and much more.'
Expand Down

0 comments on commit 0e572bf

Please sign in to comment.