Skip to content

Commit d45ab00

Browse files
authored
Bump core to 124 (#743)
* add ruby 2.5 for travis * bump core to 1.2.4 * update the changelog
1 parent 275b0a3 commit d45ab00

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,15 @@ Commit based release not is [release_notes.md](./release_notes.md)
33

44
Release tags are https://github.com/appium/ruby_lib/releases .
55

6+
## [Unreleased]
7+
### 1. Enhancements
8+
- Bump the core library to 1.2.4
9+
- The changelog is [here](https://github.com/appium/ruby_lib_core/blob/master/CHANGELOG.md#124---2018-01-03)
10+
11+
### 2. Bug fixes
12+
13+
### 3. Deprecations
14+
615
## v9.8.2
716
### 1. Enhancements
817
- add `shell` command wrapped `mobile: shell` for Android [#732](https://github.com/appium/ruby_lib/pull/732)

appium_lib.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Gem::Specification.new do |s|
1313
s.homepage = 'https://github.com/appium/ruby_lib' # published as appium_lib
1414
s.require_paths = ['lib']
1515

16-
s.add_runtime_dependency 'appium_lib_core', '~> 1.2.3'
16+
s.add_runtime_dependency 'appium_lib_core', '~> 1.2.4'
1717
s.add_runtime_dependency 'tomlrb', '~> 1.1'
1818
s.add_runtime_dependency 'nokogiri', '~> 1.6', '>= 1.6.6'
1919

lib/appium_lib/common/log.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ module Common
99
# @driver.get_log(:syslog) #=> [[Selenium::WebDriver::LogEntry]]
1010
#
1111
def get_log(type)
12-
Appium::Core::Logs.new(@driver.manage.logs).get type
12+
@driver.logs.get type
1313
end
1414

1515
# Get a list of available log types
@@ -21,7 +21,7 @@ def get_log(type)
2121
# @driver.get_available_log_types #=> [:syslog, :crashlog, :performance]
2222
#
2323
def get_available_log_types
24-
Appium::Core::Logs.new(@driver.manage.logs).available_types
24+
@driver.logs.available_types
2525
end
2626
end # module Common
2727
end # module Appium

0 commit comments

Comments
 (0)