diff --git a/CHANGELOG.md b/CHANGELOG.md index 0d8a9e70..d2ab4e70 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +0.6.0 (Feb 06 2018) +----- +- Added the ability to run screenshot tests on multiple devices at once + - Set `multipleDevices` to `true` in your `screenshots` config in your Gradle file to enable this. +- The core module no longer depends on junit +- Upgraded to Gradle 4.4.1 +- Removed R and BuildConfig classes from release artifacts +- Added a Buck file for the Python module + 0.5.0 (Nov 20 2017) ----- - Upgraded to AGP 3 diff --git a/gradle.properties b/gradle.properties index 7d95010d..ec68592a 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ -VERSION_NAME=0.6.0-SNAPSHOT +VERSION_NAME=0.6.0 GROUP=com.facebook.testing.screenshot -org.gradle.configureondemand=true \ No newline at end of file +org.gradle.configureondemand=true diff --git a/plugin/src/main/groovy/com/facebook/testing/screenshot/build/ScreenshotsPlugin.groovy b/plugin/src/main/groovy/com/facebook/testing/screenshot/build/ScreenshotsPlugin.groovy index ef05f407..5f9a50a1 100644 --- a/plugin/src/main/groovy/com/facebook/testing/screenshot/build/ScreenshotsPlugin.groovy +++ b/plugin/src/main/groovy/com/facebook/testing/screenshot/build/ScreenshotsPlugin.groovy @@ -184,7 +184,7 @@ class ScreenshotsPlugin implements Plugin { if (!implementationVersion) { println("WARNING: you shouldn't see this in normal operation, file a bug report if this is not a framework test") - implementationVersion = '0.5.0' + implementationVersion = '0.6.0' } project.dependencies.androidTestApi('com.facebook.testing.screenshot:core:' + implementationVersion)