Skip to content

Commit 2b93ebe

Browse files
authored
Merge pull request #130 from aiham/update-version-3.0.0
Update version to 3.0.0
2 parents c4e54f7 + 9c322de commit 2b93ebe

File tree

7 files changed

+16
-11
lines changed

7 files changed

+16
-11
lines changed

.travis.yml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
1+
dist: trusty
12
language: java
2-
jdk:
3-
- openjdk7
4-
- oraclejdk7
5-
- oraclejdk8
3+
matrix:
4+
include:
5+
- dist: precise
6+
jdk: openjdk7
7+
- dist: precise
8+
jdk: oraclejdk7
9+
- jdk: openjdk8
10+
- jdk: oraclejdk8
611

712
notifications:
813
slack:

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ When you use Maven as your build tool, you can manage dependencies in the `pom.x
2424
<dependency>
2525
<groupId>com.tokbox</groupId>
2626
<artifactId>opentok-server-sdk</artifactId>
27-
<version>2.3.2</version>
27+
<version>3.0.0</version>
2828
</dependency>
2929
```
3030

@@ -34,7 +34,7 @@ When you use Gradle as your build tool, you can manage dependencies in the `buil
3434

3535
```groovy
3636
dependencies {
37-
compile group: 'com.tokbox', name: 'opentok-server-sdk', version: '2.3.2'
37+
compile group: 'com.tokbox', name: 'opentok-server-sdk', version: '3.0.0'
3838
}
3939
```
4040

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ apply plugin: 'jacoco'
1212

1313
group = 'com.tokbox'
1414
archivesBaseName = 'opentok-server-sdk'
15-
version = '3.0.0-beta.3'
15+
version = '3.0.0'
1616

1717
task javadocJar(type: Jar) {
1818
classifier = 'javadoc'

src/main/java/com/opentok/Role.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public enum Role {
2121
*/
2222
PUBLISHER,
2323
/**
24-
* In addition to the privileges granted to a publisher, in clients using the OpenTok.js 2.2
24+
* In addition to the privileges granted to a publisher, in clients using the OpenTok.js
2525
* library, a moderator can call the <code>forceUnpublish()</code> and
2626
* <code>forceDisconnect()</code> method of the Session object.
2727
*/

src/main/java/com/opentok/TokenOptions.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ public static class Builder {
8787
* streams, and signal. (This is the default value if you do not specify a role.)</li>
8888
*
8989
* <li> <code>MODERATOR</code> &mdash; In addition to the privileges granted to a
90-
* publisher, in clients using the OpenTok.js 2.2 library, a moderator can call the
90+
* publisher, in clients using the OpenTok.js library, a moderator can call the
9191
* <code>forceUnpublish()</code> and <code>forceDisconnect()</code> method of the
9292
* Session object.</li>
9393
* </ul>

src/main/java/com/opentok/constants/Version.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@
88
package com.opentok.constants;
99

1010
public class Version {
11-
public static final String VERSION = "3.0.0-beta.3";
11+
public static final String VERSION = "3.0.0";
1212
}

src/main/java/com/opentok/package-info.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
* Licensed under The MIT License (MIT). See LICENSE file for more information.
77
*/
88
/**
9-
* Includes the main classes of the OpenTok 2.2 Java SDK.
9+
* Includes the main classes of the OpenTok Java SDK.
1010
*/
1111
package com.opentok;

0 commit comments

Comments
 (0)