Increment version to 1.4.2

This commit is contained in:
Oliver Woodman 2015-08-04 16:07:54 +01:00
parent 3bd52c74bb
commit a7d843f90d
5 changed files with 12 additions and 8 deletions

View file

@ -1,6 +1,10 @@
# Release notes #
### Current dev branch (from r1.4.1) ###
### Current dev branch (from r1.4.2) ###
* Nothing yet.
### r1.4.2 ###
* Implemented automatic format detection for regular container formats.
* Added UdpDataSource for connecting to multicast streams.

View file

@ -16,8 +16,8 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.google.android.exoplayer.demo"
android:versionCode="1401"
android:versionName="1.4.1"
android:versionCode="1402"
android:versionName="1.4.2"
android:theme="@style/RootTheme">
<uses-permission android:name="android.permission.INTERNET"/>

View file

@ -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.webm"
android:versionCode="1401"
android:versionName="1.4.1"
android:versionCode="1402"
android:versionName="1.4.2"
android:theme="@style/RootTheme">
<uses-permission android:name="android.permission.INTERNET"/>

View file

@ -77,7 +77,7 @@ publish {
userOrg = 'google'
groupId = 'com.google.android.exoplayer'
artifactId = 'exoplayer'
version = 'r1.4.1'
version = 'r1.4.2'
description = 'The ExoPlayer library.'
website = 'https://github.com/google/ExoPlayer'
}

View file

@ -23,7 +23,7 @@ public final class ExoPlayerLibraryInfo {
/**
* The version of the library, expressed as a string.
*/
public static final String VERSION = "1.4.1";
public static final String VERSION = "1.4.2";
/**
* The version of the library, expressed as an integer.
@ -31,7 +31,7 @@ public final class ExoPlayerLibraryInfo {
* 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 = 001004001;
public static final int VERSION_INT = 001004002;
/**
* Whether the library was compiled with {@link com.google.android.exoplayer.util.Assertions}