Skip to content
This repository was archived by the owner on Mar 12, 2021. It is now read-only.

Commit 4711271

Browse files
author
moozzyk
committed
Updating version to beta1
1 parent 28e54ba commit 4711271

4 files changed

Lines changed: 3 additions & 7 deletions

File tree

Build/Version.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<SignalRClientCppVersionMajor>1</SignalRClientCppVersionMajor>
66
<SignalRClientCppVersionMinor>0</SignalRClientCppVersionMinor>
77
<SignalRClientCppVersionPatch>0</SignalRClientCppVersionPatch>
8-
<SignalRClientCppVersionSuffix>-alpha1</SignalRClientCppVersionSuffix>
8+
<SignalRClientCppVersionSuffix>-beta1</SignalRClientCppVersionSuffix>
99
<!-- $(build_number) generated by Team City -->
1010
<SignalRClientCppVersionSuffix Condition="'$(build_number)' != '' And '$(build_branch)' != 'release'">$(SignalRClientCppVersionSuffix)-$(build_number)</SignalRClientCppVersionSuffix>
1111
<SignalRClientCppVersionString>$(SignalRClientCppVersionMajor).$(SignalRClientCppVersionMinor).$(SignalRClientCppVersionPatch)$(SignalRClientCppVersionSuffix)</SignalRClientCppVersionString>

Build/build.msbuild

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,6 @@
4242
Projects="@(TestProjects)"
4343
Properties="Configuration=$(Configuration);Platform=$(Platform);PlatformToolset=$(PlatformToolset)" />
4444

45-
<MSBuild Targets="$(BuildTargets)"
46-
Projects="@(TestProjects)"
47-
Properties="Configuration=$(Configuration);Platform=$(Platform);PlatformToolset=$(PlatformToolset)" />
48-
4945
<MSBuild Targets="$(BuildTargets)"
5046
Projects="@(SampleProjects)"
5147
Properties="Configuration=$(Configuration);Platform=$(Platform);PlatformToolset=$(PlatformToolset)" />

src/signalrclient/constants.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55

66
#include "cpprest/details/basic_types.h"
77

8-
#define SIGNALR_VERSION _XPLATSTR("1.0.0-alpha")
8+
#define SIGNALR_VERSION _XPLATSTR("1.0.0-beta1")
99
#define PROTOCOL _XPLATSTR("1.4")
1010
#define USER_AGENT _XPLATSTR("SignalR.Client.Cpp/") SIGNALR_VERSION

test/signalrclienttests/http_sender_tests.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ TEST(http_sender_get_response, user_agent_set)
5757
auto request = new web_request_stub((unsigned short)200, _XPLATSTR("OK"), response_body);
5858
request->on_get_response = [](web_request_stub& request)
5959
{
60-
ASSERT_EQ(_XPLATSTR("SignalR.Client.Cpp/1.0.0-alpha"), request.m_user_agent_string);
60+
ASSERT_EQ(_XPLATSTR("SignalR.Client.Cpp/1.0.0-beta1"), request.m_user_agent_string);
6161
};
6262

6363
return std::unique_ptr<web_request>(request);

0 commit comments

Comments
 (0)