Skip to content

Commit

Permalink
Bump to 1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ojw28 committed May 12, 2015
1 parent b7b9dc1 commit 5ca5df0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions demo/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.google.android.exoplayer.demo"
android:versionCode="1300"
android:versionName="1.3.00"
android:versionCode="1301"
android:versionName="1.3.1"
android:theme="@style/RootTheme">

<uses-permission android:name="android.permission.INTERNET"/>
Expand Down
2 changes: 1 addition & 1 deletion library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ publish {
userOrg = 'google'
groupId = 'com.google.android.exoplayer'
artifactId = 'exoplayer'
version = 'r1.2.3'
version = 'r1.3.1'
description = 'The ExoPlayer library.'
website = 'https://github.com/google/ExoPlayer'
}
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,15 @@ private ExoPlayerLibraryInfo() {}
/**
* The version of the library, expressed as a string.
*/
public static final String VERSION = "1.3.0";
public static final String VERSION = "1.3.1";

/**
* The version of the library, expressed as an integer.
* <p>
* Three digits are used for each component of {@link #VERSION}. For example "1.2.3" has the
* corresponding integer version 001002003.
*/
public static final int VERSION_INT = 001003000;
public static final int VERSION_INT = 001003001;

/**
* Whether the library was compiled with {@link com.google.android.exoplayer.util.Assertions}
Expand Down

0 comments on commit 5ca5df0

Please sign in to comment.