File tree 4 files changed +15
-17
lines changed
4 files changed +15
-17
lines changed Original file line number Diff line number Diff line change @@ -3,9 +3,18 @@ Commit based release not is [release_notes.md](./release_notes.md)
3
3
4
4
Release tags are https://github.com/appium/ruby_lib/releases .
5
5
6
+
6
7
## Unreleased
7
8
### 1. Enhancements
8
9
10
+ ### 2. Bug fixes
11
+
12
+ ### 3. Deprecations
13
+
14
+ ## v9.16.0
15
+ ### 1. Enhancements
16
+ - Introduce ` appium_thor ` in order to automate release
17
+
9
18
### 2. Bug fixes
10
19
- ` :app ` can be non-path capability like [ Windows] ( https://github.com/Microsoft/WinAppDriver )
11
20
``` ruby
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ Gem::Specification.new do |s|
14
14
s . homepage = 'https://github.com/appium/ruby_lib' # published as appium_lib
15
15
s . require_paths = [ 'lib' ]
16
16
17
- s . add_runtime_dependency 'appium_lib_core' , '~> 2.0.0 '
17
+ s . add_runtime_dependency 'appium_lib_core' , '~> 2.0'
18
18
s . add_runtime_dependency 'nokogiri' , '~> 1.8' , '>= 1.8.1'
19
19
s . add_runtime_dependency 'tomlrb' , '~> 1.1'
20
20
Original file line number Diff line number Diff line change @@ -30,17 +30,6 @@ Android tests require running on physical hardware with Android 5.0 (API 21). Th
30
30
> $ curl -u username https://rubygems.org/api/v1/api_key.yaml >
31
31
~ /.gem/credentials; chmod 0600 ~ /.gem/credentials
32
32
33
- 1 . Bump the version number ` rake bump `
34
- 2 . Generate release note and create a branch with ` rake release `
35
- - Push and merge the branch to the master
36
- 3 . Build and publish gem with ` rake publish `
37
- 4 . Add release information on GitHub: https://github.com/appium/ruby_lib/releases
38
- - Template
39
- ```
40
- ### 1. Enhancements
41
-
42
- ### 2. Bug fixes
43
-
44
- ### 3. Deprecations
45
- ```
46
-
33
+ 1 . Bump the version number: ` thor bump ` (` bumpy ` , ` bumpz ` )
34
+ 2 . Update ` CHANGELOG.md `
35
+ 3 . Generate release note, publish release gem and push the tag to this repository: ` thor release `
Original file line number Diff line number Diff line change 1
1
module Appium
2
2
# Version and Date are defined on the 'Appium' module, not 'Appium::Common'
3
- VERSION = '9.15.2 ' . freeze unless defined? ::Appium ::VERSION
4
- DATE = '2018-11-07 ' . freeze unless defined? ::Appium ::DATE
3
+ VERSION = '9.16.0 ' . freeze unless defined? ::Appium ::VERSION
4
+ DATE = '2018-11-14 ' . freeze unless defined? ::Appium ::DATE
5
5
end
You can’t perform that action at this time.
0 commit comments