Skip to content

Commit

Permalink
Release 1.4.0 - second
Browse files Browse the repository at this point in the history
Update version to 1.4.0 (#223)
  • Loading branch information
Y-Sindo authored May 11, 2021
2 parents 8a5e393 + acd1369 commit 99a4b31
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ protected ServerlessHub(IServiceHubContext hubContext = null, IServiceManager se
/// <summary>
/// Gets client endpoint access information object for SignalR hub connections to connect to Azure SignalR Service
/// </summary>
[Obsolete("Please use async version instead.")]
protected SignalRConnectionInfo Negotiate(string userId = null, IList<Claim> claims = null, TimeSpan? lifetime = null)
{
return NegotiateAsync(new NegotiationOptions
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ namespace SignalRServiceExtension.Tests.Trigger
public class ServerlessHubTest
{
[Fact]
[Obsolete]
private async Task ServerlessHubUnitTest()
{
var clientProxyMoc = new Mock<IClientProxy>();
Expand Down Expand Up @@ -56,7 +55,6 @@ public MyHub(IServiceHubContext serviceHubContext = null, IServiceManager servic
}

[FunctionName("negotiate")]
[Obsolete]
public SignalRConnectionInfo Negotiate(string userId)
{
return base.Negotiate(userId);
Expand Down
2 changes: 1 addition & 1 deletion version.props
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project>
<PropertyGroup>
<VersionPrefix>1.3.0</VersionPrefix>
<VersionPrefix>1.4.0</VersionPrefix>
<VersionSuffix>preview1</VersionSuffix>
<PackageVersion Condition="'$(IsFinalBuild)' == 'true' AND '$(VersionSuffix)' == 'rtm' ">$(VersionPrefix)</PackageVersion>
<PackageVersion Condition="'$(IsFinalBuild)' == 'true' AND '$(VersionSuffix)' != 'rtm' ">$(VersionPrefix)-$(VersionSuffix)-final</PackageVersion>
Expand Down

0 comments on commit 99a4b31

Please sign in to comment.