Skip to content

Commit

Permalink
Bump version to 1.5.6.
Browse files Browse the repository at this point in the history
-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=115233469
  • Loading branch information
ojw28 committed Feb 22, 2016
1 parent 84618ef commit 396a19f
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion RELEASENOTES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Release notes #

### Current dev branch (from r1.5.5) ###
### r1.5.6 ###

* MP3: Fix mono streams playing at 2x speed on some MediaTek based devices (#801).
* MP3: Fix playback of some streams when stream length is unknown.
Expand Down
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="1505"
android:versionName="1.5.5"
android:versionCode="1506"
android:versionName="1.5.6"
android:theme="@style/RootTheme">

<uses-permission android:name="android.permission.INTERNET"/>
Expand Down
4 changes: 2 additions & 2 deletions demo_misc/vp9_opus_sw/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.google.android.exoplayer.demo.vp9opus"
android:versionCode="1505"
android:versionName="1.5.5"
android:versionCode="1506"
android:versionName="1.5.6"
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 @@ -77,7 +77,7 @@ publish {
userOrg = 'google'
groupId = 'com.google.android.exoplayer'
artifactId = 'exoplayer'
version = 'r1.5.5'
version = 'r1.5.6'
description = 'The ExoPlayer library.'
website = 'https://github.com/google/ExoPlayer'
}
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,15 @@ public final class ExoPlayerLibraryInfo {
/**
* The version of the library, expressed as a string.
*/
public static final String VERSION = "1.5.5";
public static final String VERSION = "1.5.6";

/**
* 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 = 001005005;
public static final int VERSION_INT = 001005006;

/**
* Whether the library was compiled with {@link com.google.android.exoplayer.util.Assertions}
Expand Down
4 changes: 2 additions & 2 deletions playbacktests/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.google.android.exoplayer.playbacktests"
android:versionCode="1505"
android:versionName="1.5.5">
android:versionCode="1506"
android:versionName="1.5.6">

<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.WAKE_LOCK"/>
Expand Down

0 comments on commit 396a19f

Please sign in to comment.