Skip to content

Commit

Permalink
Merge pull request #77 from rubensousa/develop
Browse files Browse the repository at this point in the history
2.2.2
  • Loading branch information
rubensousa committed Sep 1, 2021
2 parents ebf8769 + 150acba commit 5336f03
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
with:
java-version: 1.8
- name: Install Android SDK
uses: malinskiy/action-android/install-sdk@release/0.0.5
uses: malinskiy/action-android/install-sdk@release/0.1.2
- name: Run unit tests
run: ./gradlew testDebugUnitTest --stacktrace -Pbintray_user=${{ secrets.BINTRAY_USER }} -Pbintray_apikey=${{ secrets.BINTRAY_KEY }}
- name: Assemble library
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
with:
java-version: 1.8
- name: Install Android SDK
uses: malinskiy/action-android/install-sdk@release/0.0.5
uses: malinskiy/action-android/install-sdk@release/0.1.2
- name: Run unit tests
run: ./gradlew testDebugUnitTest --stacktrace -Pbintray_user=${{ secrets.BINTRAY_USER }} -Pbintray_apikey=${{ secrets.BINTRAY_KEY }}
- name: Assemble library
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 2.2.2

- Fixed IllegalArgumentException being incorrectly thrown in `GravitySnapRecyclerView` when Gravity.CENTER is used.

## 2.2.1

- Fixed `GravitySnapHelper` not dispatching snap events for edge items sometimes on `SnapListener`
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ A SnapHelper that snaps a RecyclerView to an edge.
Add this to your build.gradle:

```groovy
implementation 'com.github.rubensousa:gravitysnaphelper:2.2.1'
implementation 'com.github.rubensousa:gravitysnaphelper:2.2.2'
```

## How to use
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true
LIBRARY_GROUP=com.github.rubensousa
LIBRARY_VERSION=2.2.1
LIBRARY_VERSION=2.2.2
LIBRARY_ARTIFACT=gravitysnaphelper
POM_NAME=GravitySnapHelper
POM_DESCRIPTION=A SnapHelper that snaps the RecyclerView to an edge
Expand Down

0 comments on commit 5336f03

Please sign in to comment.