Skip to content

Commit

Permalink
Bump version to 4.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
aiham committed Nov 15, 2017
1 parent 77f5c8a commit 87a90a4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ When you use Maven as your build tool, you can manage dependencies in the `pom.x
<dependency>
<groupId>com.tokbox</groupId>
<artifactId>opentok-server-sdk</artifactId>
<version>4.0.0</version>
<version>4.1.0</version>
</dependency>
```

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

```groovy
dependencies {
compile group: 'com.tokbox', name: 'opentok-server-sdk', version: '4.0.0'
compile group: 'com.tokbox', name: 'opentok-server-sdk', version: '4.1.0'
}
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ apply plugin: 'jacoco'

group = 'com.tokbox'
archivesBaseName = 'opentok-server-sdk'
version = '4.0.1-alpha.1'
version = '4.1.0'

task javadocJar(type: Jar) {
classifier = 'javadoc'
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/opentok/constants/Version.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@
package com.opentok.constants;

public class Version {
public static final String VERSION = "4.0.1-alpha.1";
public static final String VERSION = "4.1.0";
}

0 comments on commit 87a90a4

Please sign in to comment.