Skip to content

Commit

Permalink
Merge branch '4.40-bug-fixes' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
skoshelev committed Mar 22, 2021
2 parents 6c00db6 + 89b0839 commit ecb1bb8
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/Libraries/Nop.Core/NopVersion.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public static class NopVersion
/// <summary>
/// Gets the minor store version
/// </summary>
public const string MINOR_VERSION = "1";
public const string MINOR_VERSION = "2";

/// <summary>
/// Gets the full store version
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ public async Task<GetShippingOptionResponse> GetShippingOptionsAsync(GetShipping
if (getShippingOptionRequest == null)
throw new ArgumentNullException(nameof(getShippingOptionRequest));

return null;
return Task.FromResult<decimal?>(null);
}

/// <summary>
Expand Down
2 changes: 1 addition & 1 deletion src/Plugins/Nop.Plugin.Shipping.ShipStation/plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"Group": "Shipping rate computation",
"FriendlyName": "ShipStation",
"SystemName": "Shipping.ShipStation",
"Version": "1.13",
"Version": "1.14",
"SupportedVersions": [ "4.40" ],
"Author": "nopCommerce team",
"DisplayOrder": 1,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public async Task<GetShippingOptionResponse> GetShippingOptionsAsync(GetShipping
/// </returns>
public Task<decimal?> GetFixedRateAsync(GetShippingOptionRequest getShippingOptionRequest)
{
return null;
return Task.FromResult<decimal?>(null);
}

/// <summary>
Expand Down
2 changes: 1 addition & 1 deletion src/Plugins/Nop.Plugin.Shipping.UPS/plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"Group": "Shipping rate computation",
"FriendlyName": "UPS (United Parcel Service)",
"SystemName": "Shipping.UPS",
"Version": "1.64",
"Version": "1.65",
"SupportedVersions": [ "4.40" ],
"Author": "nopCommerce team",
"DisplayOrder": 1,
Expand Down

0 comments on commit ecb1bb8

Please sign in to comment.