Skip to content

Commit fe495cc

Browse files
committed
Release 2.2.0
1 parent 1321251 commit fe495cc

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

CHANGELOG.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ Read `release_notes.md` for commit level details.
44

55
## [Unreleased]
66
### Enhancements
7+
8+
### Bug fixes
9+
10+
### Deprecations
11+
12+
## [2.2.0] - 2018-12-01
13+
### Enhancements
714
- Add `::Appium::Core::Base.platform` to call `::Selenium::WebDriver::Platform`
815
- Can identify platform using `::Appium::Core::Base.platform.windows?` for example
916

@@ -12,7 +19,6 @@ Read `release_notes.md` for commit level details.
1219
### Deprecations
1320
- `:offset_x` and `:offset_y` in `TouchAction#swipe` is deprecated in favor of `:end_x` and `:end_y`
1421

15-
1622
## [2.1.1] - 2018-11-23
1723
### Enhancements
1824
- `desired_capabilities:` is available in addition to `caps:` as a capability

lib/appium_lib_core/version.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module Appium
22
module Core
3-
VERSION = '2.1.1'.freeze unless defined? ::Appium::Core::VERSION
4-
DATE = '2018-11-23'.freeze unless defined? ::Appium::Core::DATE
3+
VERSION = '2.2.0'.freeze unless defined? ::Appium::Core::VERSION
4+
DATE = '2018-12-01'.freeze unless defined? ::Appium::Core::DATE
55
end
66
end

test/functional/android/android/device_test.rb

+3
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ class DeviceTest < AppiumLibCoreTest::Function::TestCase
88
def setup
99
@@core ||= ::Appium::Core.for(Caps.android)
1010
@driver = @@core.start_driver
11+
12+
require 'pry'
13+
binding.pry
1114
end
1215

1316
def teardown

0 commit comments

Comments
 (0)