Skip to content

Commit

Permalink
preparing v1.4.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
idanatz committed Jan 13, 2020
1 parent dbf7933 commit 0ef1145
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 13 deletions.
30 changes: 19 additions & 11 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,48 +1,56 @@
Changelog
==========
=========

Version 1.4.1
-------------
* Added the ability to get view types from the adapter to support GridLayoutManager.SpanSizeLookup
* Added more tests to cover paging


Version 1.4.0
----------------------------
-------------
* Added support for ButterKnife and DataBinding
* Added more utility functions like item visibility
* Added examples for nested RecyclerView, ButterKnife and DataBinding in the sample project
* Fixed Bug: Sync issues with background and ui threads when using nested RecyclerViews with OneAdapter
* Breaking Change: ViewBinder getRootView function changed to a property
* Breaking Change: added HookConfig for SwipeEventHook to specify the supported swipe directions
* Breaking Changes:
* ViewBinder getRootView function changed to a property
* Added HookConfig for SwipeEventHook to specify the supported swipe directions


Version 1.3.0
----------------------------
-------------
* Added First Bind Animation Config
* Improved threading mechanism
* Added common UI tests
* Breaking Change: RecyclerView is now a constructor parameter instead of an attachment function
* Breaking Change: OnUnbind functions now includes the model as a parameter
* Breaking Changes:
* RecyclerView is now a constructor parameter instead of an attachment function
* OnUnbind functions now includes the model as a parameter


Version 1.2.0
----------------------------
-------------
* Change: Diffable is now mandatory when working with OneAdapter
* Bug Fixes:
* Paging Module not working properly with some layout manager
* onUnbind call now called when the view is recycled instead of detached from window


Version 1.1.1
----------------------------
-------------
* Removed the res folder to prevent conflicts


Version 1.1.0
----------------------------
-------------
* Event Hooks:
* Swipe Event Hook
* Bug fixes related to the diffing mechanism
* Removed unnecessary lines from manifest


Version 1.0.0
----------------------------
-------------
First Release Includes:
* Modules:
* Item Module
Expand Down
14 changes: 14 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
Contributing to OneAdapter
==========================

Issues
------
Make sure to search through any issues that have already been filed at https://github.com/ironSource/OneAdapter/issues before opening a new issue.

Pull requests
-------------
If you would like to contribute to the code you can do so through GitHub by forking the repository and submitting a pull request into the develop branch. When submitting code, please make every effort to follow existing conventions and style in order to keep the code as readable as possible.

Tests
-----
Make sure to pass all tests localed in oneadapter/src/androidTest/tests before submitting a pull request.
3 changes: 2 additions & 1 deletion RELEASING.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
Release Steps:
Release Steps
=============
1. Increment version in develop.
2. Update CHANGELOG with changes.
3. Update README (features, latest dep version, etc...)
Expand Down
2 changes: 1 addition & 1 deletion versions.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
ext {
MAJOR_VERSION = 1
MINOR_VERSION = 4
HOTFIX_VERSION = 0
HOTFIX_VERSION = 1

VERSION_NAME = "${MAJOR_VERSION}.${MINOR_VERSION}.${HOTFIX_VERSION}"
VERSION_CODE = MAJOR_VERSION * 10000 + MINOR_VERSION * 100 + HOTFIX_VERSION
Expand Down

0 comments on commit 0ef1145

Please sign in to comment.