Skip to content

Commit

Permalink
Bump version to v7.18.0
Browse files Browse the repository at this point in the history
Summary: Bump version to v7.18.0

Reviewed By: tianqibt

Differential Revision: D17893432

fbshipit-source-id: 0dd103b44d3810f3bb03c703153474a647737a7e
  • Loading branch information
KylinChang authored and facebook-github-bot committed Oct 12, 2019
1 parent 268d961 commit 0247ede
Show file tree
Hide file tree
Showing 15 changed files with 22 additions and 16 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [7.18.0] - 2019-10-11

### Fixed

- Fix Android logout issue
- Fix the issue of multiple AppRequest instances when changing screen orientation
- Fix GetUserID issue

### Changed

Expand All @@ -30,6 +33,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

<!-- Links -->

[Unreleased]: https://github.com/facebook/facebook-sdk-for-unity/compare/sdk-version-7.17.2...HEAD
[Unreleased]: https://github.com/facebook/facebook-sdk-for-unity/compare/sdk-version-7.18.0...HEAD
[7.17.2]: https://github.com/facebook/facebook-sdk-for-unity/compare/sdk-version-7.17.2...sdk-version-7.18.0
[7.17.2]: https://github.com/facebook/facebook-sdk-for-unity/compare/sdk-version-7.17.1...sdk-version-7.17.2
[7.17.1]: https://github.com/facebook/facebook-sdk-for-unity/compare/sdk-version-7.1.0...sdk-version-7.17.1
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@
using System.Reflection;
using System.Runtime.CompilerServices;

[assembly: AssemblyVersion("7.17.2")]
[assembly: AssemblyVersion("7.18.0")]
2 changes: 1 addition & 1 deletion Facebook.Unity.Android/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@
using System.Reflection;
using System.Runtime.CompilerServices;

[assembly: AssemblyVersion("7.17.2")]
[assembly: AssemblyVersion("7.18.0")]
2 changes: 1 addition & 1 deletion Facebook.Unity.Canvas/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@
using System.Reflection;
using System.Runtime.CompilerServices;

[assembly: AssemblyVersion("7.17.2")]
[assembly: AssemblyVersion("7.18.0")]
2 changes: 1 addition & 1 deletion Facebook.Unity.Editor/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@
using System.Reflection;
using System.Runtime.CompilerServices;

[assembly: AssemblyVersion("7.17.2")]
[assembly: AssemblyVersion("7.18.0")]
2 changes: 1 addition & 1 deletion Facebook.Unity.Gameroom/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@
using System.Reflection;
using System.Runtime.CompilerServices;

[assembly: AssemblyVersion("7.17.2")]
[assembly: AssemblyVersion("7.18.0")]
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@
using System.Reflection;
using System.Runtime.CompilerServices;

[assembly: AssemblyVersion("7.17.2")]
[assembly: AssemblyVersion("7.18.0")]
2 changes: 1 addition & 1 deletion Facebook.Unity.IOS/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@
using System.Reflection;
using System.Runtime.CompilerServices;

[assembly: AssemblyVersion("7.17.2")]
[assembly: AssemblyVersion("7.18.0")]
2 changes: 1 addition & 1 deletion Facebook.Unity.Settings/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@
using System.Reflection;
using System.Runtime.CompilerServices;

[assembly: AssemblyVersion("7.17.2")]
[assembly: AssemblyVersion("7.18.0")]
2 changes: 1 addition & 1 deletion Facebook.Unity.Tests/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@
using System.Reflection;
using System.Runtime.CompilerServices;

[assembly: AssemblyVersion("7.17.2")]
[assembly: AssemblyVersion("7.18.0")]
2 changes: 2 additions & 0 deletions Facebook.Unity.Tests/UserAgent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@ public abstract class UserAgent : FacebookTestClass
{
public void VerifyUserAgent(string expected)
{
#pragma warning disable CS0618 // Type or member is obsolete
var mock = new DynamicMock(typeof(IAndroidWrapper));
#pragma warning restore CS0618 // Type or member is obsolete
mock.ExpectAndReturn("CallStatic", "1.0.0", "GetSdkVersion");
Assert.AreEqual(
string.Format(
Expand Down
2 changes: 1 addition & 1 deletion Facebook.Unity/FacebookSdkVersion.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public static string Build
{
get
{
return "7.17.2";
return "7.18.0";
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion Facebook.Unity/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
using System.Reflection;
using System.Runtime.CompilerServices;

[assembly: AssemblyVersion("7.17.2")]
[assembly: AssemblyVersion("7.18.0")]
[assembly: InternalsVisibleTo("Assembly-CSharp")]
[assembly: InternalsVisibleTo("Facebook.Unity.Android")]
[assembly: InternalsVisibleTo("Facebook.Unity.Canvas")]
Expand Down
6 changes: 3 additions & 3 deletions facebook-android-wrapper/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,12 @@ dependencies {
}

android {
compileSdkVersion 26
buildToolsVersion '23.0.1'
compileSdkVersion 27
buildToolsVersion '27.0.3'

defaultConfig {
minSdkVersion 15
targetSdkVersion 23
targetSdkVersion 26
}

compileOptions {
Expand Down
2 changes: 1 addition & 1 deletion scripts/build.properties
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
# IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN

UNITY_SDK_BUILD_VERSION='7.17.2'
UNITY_SDK_BUILD_VERSION='7.18.0'

FB_ANDROID_SDK_VERSION='5.0.1'

Expand Down

0 comments on commit 0247ede

Please sign in to comment.