Skip to content

Commit

Permalink
Bump version to 2.4.0 (#145)
Browse files Browse the repository at this point in the history
  • Loading branch information
aiham authored Jun 9, 2017
1 parent be76801 commit 0e24da5
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Bundler helps manage dependencies for Ruby projects. Find more info here: <http:
Add this gem to your `Gemfile`:

```ruby
gem "opentok", "~> 2.3"
gem "opentok", "~> 2.4"
```

Allow bundler to install the change.
Expand All @@ -29,7 +29,7 @@ $ bundle install
## RubyGems:

```
$ gem install opentok -v 2.3.4
$ gem install opentok -v 2.4.0
```

# Usage
Expand Down
2 changes: 1 addition & 1 deletion lib/opentok.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
require "opentok/opentok"

# Namespace for classes and modules in the OpenTok 2.2 Ruby SDK.
# Namespace for classes and modules in the OpenTok Ruby SDK.
module OpenTok

end
2 changes: 1 addition & 1 deletion lib/opentok/opentok.rb
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ module OpenTok
# streams, and signal. (This is the default value if you do not specify a role.)
#
# * <code>:moderator</code> -- In addition to the privileges granted to a
# publisher, in clients using the OpenTok.js 2.2 library, a moderator can call the
# publisher, in clients using the OpenTok.js library, a moderator can call the
# <code>forceUnpublish()</code> and <code>forceDisconnect()</code> method of the
# Session object.
# @option options [integer] :expire_time The expiration time, in seconds since the UNIX epoch.
Expand Down
2 changes: 1 addition & 1 deletion lib/opentok/session.rb
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ module OpenTok
# streams, and signal. (This is the default value if you do not specify a role.)
#
# * <code>:moderator</code> -- In addition to the privileges granted to a
# publisher, in clients using the OpenTok.js 2.2 library, a moderator can call the
# publisher, in clients using the OpenTok.js library, a moderator can call the
# <code>forceUnpublish()</code> and <code>forceDisconnect()</code> method of the
# Session object.
# @option options [integer] :expire_time The expiration time, in seconds since the UNIX epoch.
Expand Down
2 changes: 1 addition & 1 deletion lib/opentok/version.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module OpenTok
# @private
VERSION = '2.4.0.beta.1'
VERSION = '2.4.0'
end

0 comments on commit 0e24da5

Please sign in to comment.