From 114364897b42a71cac7d012c2c0b764c6866eb7a Mon Sep 17 00:00:00 2001 From: tofunmi Date: Fri, 23 Jun 2023 16:35:48 +0000 Subject: [PATCH] Version bump to media3-1.1.0 and exoplayer 2.19.0 #minor-release PiperOrigin-RevId: 542881427 --- .github/ISSUE_TEMPLATE/bug.yml | 4 +--- constants.gradle | 4 ++-- .../main/java/androidx/media3/common/MediaLibraryInfo.java | 6 +++--- 3 files changed, 6 insertions(+), 8 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml index c5fb757bf9..4758f8a002 100644 --- a/.github/ISSUE_TEMPLATE/bug.yml +++ b/.github/ISSUE_TEMPLATE/bug.yml @@ -20,9 +20,7 @@ body: label: Version description: What version of Media3 (or ExoPlayer) are you using? options: - - Media3 1.1.0-rc01 - - Media3 1.1.0-beta01 - - Media3 1.1.0-alpha01 + - Media3 1.1.0 - Media3 1.0.2 - Media3 1.0.1 - Media3 1.0.0 diff --git a/constants.gradle b/constants.gradle index cd7a130e02..302550d183 100644 --- a/constants.gradle +++ b/constants.gradle @@ -12,8 +12,8 @@ // See the License for the specific language governing permissions and // limitations under the License. project.ext { - releaseVersion = '1.1.0-rc01' - releaseVersionCode = 1_001_000_2_01 + releaseVersion = '1.1.0-' + releaseVersionCode = 1_001_000_3_00 minSdkVersion = 16 appTargetSdkVersion = 33 // API version before restricting local file access. diff --git a/libraries/common/src/main/java/androidx/media3/common/MediaLibraryInfo.java b/libraries/common/src/main/java/androidx/media3/common/MediaLibraryInfo.java index eeabbd3db2..6d27815a16 100644 --- a/libraries/common/src/main/java/androidx/media3/common/MediaLibraryInfo.java +++ b/libraries/common/src/main/java/androidx/media3/common/MediaLibraryInfo.java @@ -29,11 +29,11 @@ public final class MediaLibraryInfo { /** The version of the library expressed as a string, for example "1.2.3" or "1.2.3-beta01". */ // Intentionally hardcoded. Do not derive from other constants (e.g. VERSION_INT) or vice versa. - public static final String VERSION = "1.1.0-rc01"; + public static final String VERSION = "1.1.0"; /** The version of the library expressed as {@code TAG + "/" + VERSION}. */ // Intentionally hardcoded. Do not derive from other constants (e.g. VERSION) or vice versa. - public static final String VERSION_SLASHY = "AndroidXMedia3/1.1.0-rc01"; + public static final String VERSION_SLASHY = "AndroidXMedia3/1.1.0"; /** * The version of the library expressed as an integer, for example 1002003300. @@ -47,7 +47,7 @@ public final class MediaLibraryInfo { * (123-045-006-3-00). */ // Intentionally hardcoded. Do not derive from other constants (e.g. VERSION) or vice versa. - public static final int VERSION_INT = 1_001_000_2_01; + public static final int VERSION_INT = 1_001_000_3_00; /** Whether the library was compiled with {@link Assertions} checks enabled. */ public static final boolean ASSERTIONS_ENABLED = true;