Skip to content

Commit 7477f8f

Browse files
mingcaozhangfacebook-github-bot
authored andcommitted
Bump version to 15.0.0
Summary: $title Reviewed By: joesus Differential Revision: D39625406 fbshipit-source-id: 5501a7605749084296da612dc766f26ddba3ba4d
1 parent 5eb2504 commit 7477f8f

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

CHANGELOG.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,14 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88
## [Unreleased]
9-
### Changed
109

10+
## [15.0.0]
11+
### Changed
1112
- We now use jacoco to gather code coverage on debug builds. If you are building from source instead of using releases from maven,
1213
you may run into an issue where debug builds crash on launch.
1314
The issue and solution are well-documented in https://github.com/jacoco/jacoco/issues/968
14-
15+
- Migrated the gradle files (excluding `maven.gradle` and sample projects) from Groovy to Kotlin.
16+
1517
## [14.1.1]
1618
### Fixed
1719
- Fixed the issue which caused AndroidX activity/fragment 1.5.0+ to break the Facebook Login Android SDK Flow if the Facebook app is not installed.
@@ -438,7 +440,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
438440

439441
<!-- Links -->
440442

441-
[Unreleased]: https://github.com/facebook/facebook-android-sdk/compare/sdk-version-14.1.1...HEAD
443+
[Unreleased]: https://github.com/facebook/facebook-android-sdk/compare/sdk-version-15.0.0...HEAD
444+
[15.0.0]: https://github.com/facebook/facebook-android-sdk/compare/sdk-version-14.1.1...sdk-version-15.0.0
442445
[14.1.1]: https://github.com/facebook/facebook-android-sdk/compare/sdk-version-14.1.0...sdk-version-14.1.1
443446
[14.1.0]: https://github.com/facebook/facebook-android-sdk/compare/sdk-version-14.0.0...sdk-version-14.1.0
444447
[14.0.0]: https://github.com/facebook/facebook-android-sdk/compare/sdk-version-13.2.0...sdk-version-14.0.0
@@ -494,3 +497,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
494497
[4.41.0]: https://github.com/facebook/facebook-android-sdk/compare/sdk-version-4.40.0...sdk-version-4.41.0
495498
[4.40.0]: https://github.com/facebook/facebook-android-sdk/compare/sdk-version-4.39.0...sdk-version-4.40.0
496499

500+

facebook-core/src/main/java/com/facebook/FacebookSdkVersion.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@
2121
package com.facebook
2222

2323
internal object FacebookSdkVersion {
24-
const val BUILD = "14.1.1"
24+
const val BUILD = "15.0.0"
2525
}

facebook-core/src/main/java/com/facebook/internal/ServerProtocol.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ object ServerProtocol {
9292
// URL components
9393
private const val GRAPH_VIDEO_URL_FORMAT = "https://graph-video.%s"
9494
private const val GRAPH_URL_FORMAT = "https://graph.%s"
95-
@JvmStatic fun getDefaultAPIVersion() = "v14.0"
95+
@JvmStatic fun getDefaultAPIVersion() = "v15.0"
9696

9797
@JvmStatic
9898
fun getErrorsProxyAuthDisabled(): Collection<String> =

0 commit comments

Comments
 (0)