Skip to content

Commit 775d77a

Browse files
thepatrickAdam Ullman
authored andcommitted
v3.0.0 (#153)
* Begin development on 2.5.1 * closes [#148] update httparty to 0.15.5 (#151) * update httparty to 0.15.5 * remove 1.9.3 from travis * V3 version and readme (#152) * v3 Bump to version 3 * Add ruby v2 requirement to release notes * And install v3
1 parent e6b90b2 commit 775d77a

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ language: ruby
55
cache: bundler
66
before_install: gem update bundler
77
rvm:
8-
- 1.9.3
98
- 2.0
109
- 2.1
1110
- 2.2

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Bundler helps manage dependencies for Ruby projects. Find more info here: <http:
1717
Add this gem to your `Gemfile`:
1818

1919
```ruby
20-
gem "opentok", "~> 2.5.0"
20+
gem "opentok", "~> 3.0.0"
2121
```
2222

2323
Allow bundler to install the change.
@@ -221,6 +221,11 @@ about each release.
221221

222222
## Important changes since v2.2.0
223223

224+
**Changes in v3.0.0:**
225+
226+
The SDK now now requires Ruby v2.0.0 or higher. For Ruby v1.9.3 please continue to use the
227+
OpenTok Ruby SDK v2.5.0.
228+
224229
**Changes in v2.2.2:**
225230

226231
The default setting for the `create_session()` method is to create a session with the media mode set

lib/opentok/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
module OpenTok
22
# @private
3-
VERSION = '2.5.0'
3+
VERSION = '3.0.0'
44
end

opentok.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Gem::Specification.new do |spec|
2626
# spec.add_development_dependency "debugger", "~> 1.6.6"
2727

2828
spec.add_dependency "addressable", "~> 2.3" # 2.3.0 <= version < 3.0.0
29-
spec.add_dependency "httparty", "~> 0.14.0"
29+
spec.add_dependency "httparty", "~> 0.15.5"
3030
spec.add_dependency "activesupport", ">= 2.0"
3131
spec.add_dependency "jwt", "~> 1.5.6"
3232
end

0 commit comments

Comments
 (0)