Skip to content

Commit 5336f03

Browse files
authored
Merge pull request #77 from rubensousa/develop
2.2.2
2 parents ebf8769 + 150acba commit 5336f03

File tree

5 files changed

+8
-4
lines changed

5 files changed

+8
-4
lines changed

.github/workflows/dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
with:
2828
java-version: 1.8
2929
- name: Install Android SDK
30-
uses: malinskiy/action-android/install-sdk@release/0.0.5
30+
uses: malinskiy/action-android/install-sdk@release/0.1.2
3131
- name: Run unit tests
3232
run: ./gradlew testDebugUnitTest --stacktrace -Pbintray_user=${{ secrets.BINTRAY_USER }} -Pbintray_apikey=${{ secrets.BINTRAY_KEY }}
3333
- name: Assemble library

.github/workflows/master.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
with:
2222
java-version: 1.8
2323
- name: Install Android SDK
24-
uses: malinskiy/action-android/install-sdk@release/0.0.5
24+
uses: malinskiy/action-android/install-sdk@release/0.1.2
2525
- name: Run unit tests
2626
run: ./gradlew testDebugUnitTest --stacktrace -Pbintray_user=${{ secrets.BINTRAY_USER }} -Pbintray_apikey=${{ secrets.BINTRAY_KEY }}
2727
- name: Assemble library

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 2.2.2
4+
5+
- Fixed IllegalArgumentException being incorrectly thrown in `GravitySnapRecyclerView` when Gravity.CENTER is used.
6+
37
## 2.2.1
48

59
- Fixed `GravitySnapHelper` not dispatching snap events for edge items sometimes on `SnapListener`

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ A SnapHelper that snaps a RecyclerView to an edge.
77
Add this to your build.gradle:
88

99
```groovy
10-
implementation 'com.github.rubensousa:gravitysnaphelper:2.2.1'
10+
implementation 'com.github.rubensousa:gravitysnaphelper:2.2.2'
1111
```
1212

1313
## How to use

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
1414
# org.gradle.parallel=true
1515
LIBRARY_GROUP=com.github.rubensousa
16-
LIBRARY_VERSION=2.2.1
16+
LIBRARY_VERSION=2.2.2
1717
LIBRARY_ARTIFACT=gravitysnaphelper
1818
POM_NAME=GravitySnapHelper
1919
POM_DESCRIPTION=A SnapHelper that snaps the RecyclerView to an edge

0 commit comments

Comments
 (0)