Skip to content

Commit

Permalink
Version 1.2.123
Browse files Browse the repository at this point in the history
* All components: Source control integration for project settings.
* Android Resolver: Removed AAR cache as it now makes little difference to
  incremental resolution performance.
* Android Resolver: Improved embedded resource management so that embedded
  resources should upgrade when the plugin is updated without restarting
  the Unity editor.
* Version Handler: Fixed InvokeMethod() and InvokeStaticMethod() when calling
  methods that have interface typed arguments.

Change-Id: If0dee015bd7b21d8a1ce59ede6480edc89c6b921
  • Loading branch information
stewartmiles committed Jul 23, 2019
1 parent 2880dba commit 43d7008
Show file tree
Hide file tree
Showing 38 changed files with 56 additions and 42 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,16 @@
# Version 1.2.123 - Jul 23, 2019
## New Features
* All components: Source control integration for project settings.
## Changes
* Android Resolver: Removed AAR cache as it now makes little difference to
incremental resolution performance.
* Android Resolver: Improved embedded resource management so that embedded
resources should upgrade when the plugin is updated without restarting
the Unity editor.
## Bug Fixes
* Version Handler: Fixed InvokeMethod() and InvokeStaticMethod() when calling
methods that have interface typed arguments.

# Version 1.2.122 - Jul 2, 2019
## Bug Fixes
* iOS Resolver: Worked around Unity not loading the iOS Resolver DLL as it
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Expand Up @@ -194,7 +194,7 @@ project.ext {
// Solution which references all projects used by the plugin.
pluginSolutionFile = new File(pluginSourceDir, "JarResolver.sln")
// Version of the plugin (update this with CHANGELOG.md on each release).
pluginVersion = "1.2.122.0"
pluginVersion = "1.2.123.0"
// Semantic version of the plugin.
pluginVersionSemVer = pluginVersion.tokenize(".")[0..2].join(".")
// Base filename of the released plugin.
Expand Down
Binary file not shown.
Binary file not shown.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file not shown.
Binary file not shown.
Binary file not shown.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file not shown.
Binary file not shown.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

This file was deleted.

@@ -0,0 +1,8 @@
Assets/PlayServicesResolver/Editor/Google.IOSResolver_v1.2.123.0.dll
Assets/PlayServicesResolver/Editor/Google.IOSResolver_v1.2.123.0.dll.mdb
Assets/PlayServicesResolver/Editor/Google.JarResolver_v1.2.123.0.dll
Assets/PlayServicesResolver/Editor/Google.JarResolver_v1.2.123.0.dll.mdb
Assets/PlayServicesResolver/Editor/Google.VersionHandler.dll
Assets/PlayServicesResolver/Editor/Google.VersionHandler.dll.mdb
Assets/PlayServicesResolver/Editor/Google.VersionHandlerImpl_v1.2.123.0.dll
Assets/PlayServicesResolver/Editor/Google.VersionHandlerImpl_v1.2.123.0.dll.mdb

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions maven-indexes/dl.google.com/dl/android/maven2/index.json

Large diffs are not rendered by default.

Binary file removed play-services-resolver-1.2.122.0.unitypackage
Binary file not shown.
Binary file added play-services-resolver-1.2.123.0.unitypackage
Binary file not shown.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion source/IOSResolver/src/VersionNumber.cs
Expand Up @@ -27,7 +27,7 @@ public class IOSResolverVersionNumber {
/// <summary>
/// Version number, patched by the build process.
/// </summary>
private const string VERSION_STRING = "1.2.122.0";
private const string VERSION_STRING = "1.2.123.0";

/// <summary>
/// Cached version structure.
Expand Down
2 changes: 1 addition & 1 deletion source/PlayServicesResolver/src/VersionNumber.cs
Expand Up @@ -27,7 +27,7 @@ public class AndroidResolverVersionNumber {
/// <summary>
/// Version number, patched by the build process.
/// </summary>
private const string VERSION_STRING = "1.2.122.0";
private const string VERSION_STRING = "1.2.123.0";

/// <summary>
/// Cached version structure.
Expand Down
2 changes: 1 addition & 1 deletion source/VersionHandlerImpl/src/VersionNumber.cs
Expand Up @@ -27,7 +27,7 @@ public class VersionHandlerVersionNumber {
/// <summary>
/// Version number, patched by the build process.
/// </summary>
private const string VERSION_STRING = "1.2.122.0";
private const string VERSION_STRING = "1.2.123.0";

/// <summary>
/// Cached version structure.
Expand Down

0 comments on commit 43d7008

Please sign in to comment.