Skip to content

Commit

Permalink
Merge pull request #125 from keiji/virtualize_and_release
Browse files Browse the repository at this point in the history
Virtualize GetStatusCodesAsync method.
  • Loading branch information
keiji authored Oct 4, 2021
2 parents b75a24d + bbc5e53 commit 3d7385d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Chino.Android/Chino.Android.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<MonoAndroidResourcePrefix>Resources</MonoAndroidResourcePrefix>
<MonoAndroidAssetsPrefix>Assets</MonoAndroidAssetsPrefix>
<PackageId>Chino.Android</PackageId>
<PackageVersion>1.0.0-rc02</PackageVersion>
<PackageVersion>1.0.0-rc03</PackageVersion>
<Authors>Cappuccino Authors</Authors>
<Description>Cappuccino is an yet another Exposure Notification Library for COCOA</Description>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion Chino.Common/AbsExposureNotificationClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public abstract class AbsExposureNotificationClient
/// Gets the list of current Exposure Notification status code.
/// </summary>
/// <returns></returns>
public async Task<IList<int>> GetStatusCodesAsync()
public virtual async Task<IList<int>> GetStatusCodesAsync()
=> (await GetStatusesAsync()).Select(status => status.Code).ToList();

/// <summary>
Expand Down
2 changes: 1 addition & 1 deletion Chino.Common/Chino.Common.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<PackageId>Chino.Common</PackageId>
<PackageVersion>1.0.0-rc02</PackageVersion>
<PackageVersion>1.0.0-rc03</PackageVersion>
<Authors>Cappuccino Authors</Authors>
<Description>Cappuccino is an yet another Exposure Notification Library for COCOA</Description>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion Chino.iOS/Chino.iOS.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<AssemblyName>Chino</AssemblyName>
<IPhoneResourcePrefix>Resources</IPhoneResourcePrefix>
<PackageId>Chino.iOS</PackageId>
<PackageVersion>1.0.0-rc02</PackageVersion>
<PackageVersion>1.0.0-rc03</PackageVersion>
<Authors>Cappuccino Authors</Authors>
<Description>Cappuccino is an yet another Exposure Notification Library for COCOA</Description>
</PropertyGroup>
Expand Down

0 comments on commit 3d7385d

Please sign in to comment.