Skip to content

Commit a63da6b

Browse files
committed
Release 3.1.3
1 parent b979325 commit a63da6b

File tree

2 files changed

+14
-6
lines changed

2 files changed

+14
-6
lines changed

CHANGELOG.md

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

55
## [Unreleased]
66

7+
### Enhancements
8+
9+
### Bug fixes
10+
11+
### Deprecations
12+
13+
## [3.1.3] - 2019-06-18
14+
715
### Enhancements
816
- Add arguments for `start_activity`
917
- `intentAction`, `intentCategory`, `intentFlags`, `dontStopAppOnReset`
@@ -205,11 +213,11 @@ The behaviour follows the default spec in WebDriver.
205213
206214
## [2.1.0] - 2018-11-14
207215
### Enhancements
208-
- Support below style _1_, has _url_ parameter, in addition to style _2_
216+
- Support below style _1_, has _url_ parameter, in addition to style _2_
209217
```
210218
# 1
211219
Appium::Core.for url: "http://127.0.0.1:8080/wd/hub", caps: {...}, appium_lib: {...}
212-
220+
213221
# 2
214222
Appium::Core.for caps: {...}, appium_lib: {...}
215223
```
@@ -501,7 +509,7 @@ This release has a breaking change for creating core. Thus, I've bumped the majo
501509
502510
## [1.3.4] - 2018-03-21
503511
### Enhancements
504-
- Add `save_viewport_screenshot` which get screenshot except for status bar.
512+
- Add `save_viewport_screenshot` which get screenshot except for status bar.
505513
- https://github.com/search?q=org%3Aappium+viewportScreenshot&type=Code
506514
- [iOS] Add `start_performance_record` and `get_performance_record`
507515
@@ -543,7 +551,7 @@ This release has a breaking change for creating core. Thus, I've bumped the majo
543551
Appium::Core::TouchAction.new(@driver)
544552
.swipe(start_x: 75, start_y: 500, offset_x: 75, offset_y: 500, duration: 500)
545553
.perform
546-
554+
547555
# Tap (75, 500) and move the point to (75, 1000) with duration 500ms.
548556
Appium::Core::TouchAction.new(@driver)
549557
.swipe(start_x: 75, start_y: 500, offset_x: 75, offset_y: 1000, duration: 500)

lib/appium_lib_core/version.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
module Appium
1616
module Core
17-
VERSION = '3.1.2' unless defined? ::Appium::Core::VERSION
18-
DATE = '2019-05-10' unless defined? ::Appium::Core::DATE
17+
VERSION = '3.1.3' unless defined? ::Appium::Core::VERSION
18+
DATE = '2019-06-18' unless defined? ::Appium::Core::DATE
1919
end
2020
end

0 commit comments

Comments
 (0)