diff --git a/README.md b/README.md
index c57120a..1b48361 100644
--- a/README.md
+++ b/README.md
@@ -165,6 +165,7 @@ public class Example {
- `driver` (**required**) - A appium driver instance
- `name` (**required**) - The screenshot name; must be unique to each screenshot
- `options` (**optional**) - There are various options supported by percy_screenshot to server further functionality.
+ - `sync` - Boolean value by default it falls back to false, Gives the processed result around screenshot [From CLI v1.28.0-beta.0+]
- `freezeAnimatedImage` - Boolean value by default it falls back to `false`, you can pass `true` and percy will freeze image based animations.
- `freezeImageBySelectors` - List of selectors. Images will be freezed which are passed using selectors. For this to work `freezeAnimatedImage` must be set to true.
- `freezeImageByXpaths` - List of xpaths. Images will be freezed which are passed using xpaths. For this to work `freezeAnimatedImage` must be set to true.
diff --git a/pom.xml b/pom.xml
index 45d2f69..cc40830 100644
--- a/pom.xml
+++ b/pom.xml
@@ -5,7 +5,7 @@
io.percy
percy-appium-app
- 2.1.0
+ 2.1.1-beta.0
jar
${project.groupId}:${project.artifactId}
diff --git a/src/main/java/io/percy/appium/Environment.java b/src/main/java/io/percy/appium/Environment.java
index a9e6013..e0f098e 100644
--- a/src/main/java/io/percy/appium/Environment.java
+++ b/src/main/java/io/percy/appium/Environment.java
@@ -4,7 +4,7 @@
public class Environment {
private AppiumDriver driver;
- public static final String SDK_VERSION = "2.1.0";
+ public static final String SDK_VERSION = "2.1.1-beta.0";
private static final String SDK_NAME = "percy-appium-app";
private static String percyBuildID;
private static String percyBuildUrl;