diff --git a/CHANGELOG.md b/CHANGELOG.md
index f01519e..b89928a 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,14 @@
+## [6.1.3](https://github.com/NativeScript/nativescript-dev-appium/compare/6.1.2...6.1.3) (2019-11-12)
+
+
+### Bug Fixes
+
+* **ios:** apply getActualRectangle ([#267](https://github.com/NativeScript/nativescript-dev-appium/issues/267)) ([ebe92e0](https://github.com/NativeScript/nativescript-dev-appium/commit/ebe92e0))
+* compareElement to use proper rectangle and generate proper diff image. ([cd76798](https://github.com/NativeScript/nativescript-dev-appium/commit/cd76798))
+* resolve device type by device name ([#277](https://github.com/NativeScript/nativescript-dev-appium/issues/277)) ([e7d7345](https://github.com/NativeScript/nativescript-dev-appium/commit/e7d7345))
+
+
+
## [6.1.2](https://github.com/NativeScript/nativescript-dev-appium/compare/6.1.0...6.1.2) (2019-10-04)
diff --git a/package.json b/package.json
index 639e473..7bc0aef 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "nativescript-dev-appium",
- "version": "6.2.0",
+ "version": "6.1.3",
"description": "A NativeScript plugin to help integrate and run Appium tests",
"author": "NativeScript",
"license": "MIT",
diff --git a/test/device-manager.spec.ts b/test/device-manager.spec.ts
index bec3568..163b998 100644
--- a/test/device-manager.spec.ts
+++ b/test/device-manager.spec.ts
@@ -206,8 +206,8 @@ describe("start-appium-server-ios", async () => {
appPath: iosApp,
appiumCaps: {
platformName: Platform.IOS,
- deviceName: /^iPhone XR$/,
- platformVersion: /12/,
+ deviceName: /^iPhone XR 12$/,
+ platformVersion: "12.2",
fullReset: true
},
verbose: false
@@ -275,7 +275,7 @@ describe("dev-mode-options", async () => {
before("start devices", async () => {
await DeviceController.startDevice({ platform: Platform.ANDROID, apiLevel: "23" });
- await DeviceController.startDevice({ platform: Platform.IOS, apiLevel: /12./, name: "iPhone XR" });
+ await DeviceController.startDevice({ platform: Platform.IOS, apiLevel: "12.2", name: "iPhone XR 12" });
appiumServer = new AppiumServer({});
await appiumServer.start(8399);
});