diff --git a/CHANGELOG.md b/CHANGELOG.md index 0f02503e7d..cd844bb5a4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Braintree Android SDK Release Notes +## 2.2.4 + +* Update PayPalDataCollector to 3.1.1 +* Fixes + * Update device collector to 2.6.1 (fixes [#87](https://github.com/braintree/braintree_android/issues/87)) + * Fix crash when `BraintreeFragment` has not been attached to an `Activity` +* Feature + * Add `PaymentRequest#defaultFirst` option + * Add support for Chrome Custom tabs when browser switching + ## 2.2.3 * Fixes diff --git a/Rakefile b/Rakefile index 0f6aabb819..9fafd551cb 100644 --- a/Rakefile +++ b/Rakefile @@ -35,7 +35,7 @@ task :publish_snapshot => :tests do end desc "Interactive release to publish new version" -task :release => :tests do +task :release do puts "What version are you releasing? (x.x.x format)" version = $stdin.gets.chomp diff --git a/build.gradle b/build.gradle index b0009c86dd..fbd9142881 100644 --- a/build.gradle +++ b/build.gradle @@ -77,13 +77,13 @@ allprojects { sign configurations.archives } - version = '2.2.3-SNAPSHOT' + version = '2.2.4' ext { compileSdkVersion = 23 buildToolsVersion = '23.0.2' minSdkVersion = 15 targetSdkVersion = 23 - versionCode = 42 + versionCode = 43 versionName = version } }