Skip to content

Commit 621a9eb

Browse files
committed
Release 9.16.0
1 parent b634a7d commit 621a9eb

File tree

4 files changed

+15
-17
lines changed

4 files changed

+15
-17
lines changed

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,18 @@ 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+
67
## Unreleased
78
### 1. Enhancements
89

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+
918
### 2. Bug fixes
1019
- `:app` can be non-path capability like [Windows](https://github.com/Microsoft/WinAppDriver)
1120
```ruby

appium_lib.gemspec

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

17-
s.add_runtime_dependency 'appium_lib_core', '~> 2.0.0'
17+
s.add_runtime_dependency 'appium_lib_core', '~> 2.0'
1818
s.add_runtime_dependency 'nokogiri', '~> 1.8', '>= 1.8.1'
1919
s.add_runtime_dependency 'tomlrb', '~> 1.1'
2020

contributing.md

+3-14
Original file line numberDiff line numberDiff line change
@@ -30,17 +30,6 @@ Android tests require running on physical hardware with Android 5.0 (API 21). Th
3030
> $ curl -u username https://rubygems.org/api/v1/api_key.yaml >
3131
~/.gem/credentials; chmod 0600 ~/.gem/credentials
3232

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`

lib/appium_lib/version.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module Appium
22
# 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
55
end

0 commit comments

Comments
 (0)