Skip to content

Commit

Permalink
Merge pull request #129 from BranchMetrics/Release-2.1.0
Browse files Browse the repository at this point in the history
Updated Version for Release 2.1.0
  • Loading branch information
NidhiDixit09 authored Nov 21, 2023
2 parents ff74cf2 + a1af9a5 commit c653f50
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 23 deletions.
2 changes: 1 addition & 1 deletion BranchInstaller/Product.wxs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version='1.0' encoding='windows-1252'?>
<Wix xmlns='http://schemas.microsoft.com/wix/2006/wi'>
<Product Id="*" Language="1033" Manufacturer="Branch Metrics, Inc." Name="Branch C++ SDK for Windows" UpgradeCode="29b1dc08-2190-48f0-bc3c-7455381f2156" Version="2.0.1">
<Product Id="*" Language="1033" Manufacturer="Branch Metrics, Inc." Name="Branch C++ SDK for Windows" UpgradeCode="29b1dc08-2190-48f0-bc3c-7455381f2156" Version="2.1.0">
<Package Compressed="yes" InstallScope="perMachine" InstallerVersion="200"/>
<MajorUpgrade DowngradeErrorMessage="A newer version of Branch C++ SDK for Windows is already installed."/>
<Media Id="1" Cabinet="cab1.cab" EmbedCab="yes"/>
Expand Down
5 changes: 0 additions & 5 deletions BranchSDK/src/BranchIO/Defines.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ const char *PATH_GET_URL = "v1/url";
const char *PATH_GET_APP = "v1/app-link-settings";
const char *PATH_REGISTER_OPEN = "v1/open";
const char *PATH_REGISTER_CLOSE = "v1/close";
const char *PATH_REGISTER_VIEW = "v1/register-view";
const char *PATH_LOGOUT = "v1/logout";
const char *PATH_URL = "v1/url";

Expand Down Expand Up @@ -90,9 +89,6 @@ Defines::stringify(APIEndpoint apiEndpoint) {
case REGISTER_CLOSE:
ss << PATH_REGISTER_CLOSE;
break;
case REGISTER_VIEW:
ss << PATH_REGISTER_VIEW;
break;
case LOGOUT:
ss << PATH_LOGOUT;
break;
Expand Down Expand Up @@ -149,7 +145,6 @@ Defines::endpointType(APIEndpoint apiEndpoint) {
switch (apiEndpoint) {
case REGISTER_OPEN:
case REGISTER_CLOSE:
case REGISTER_VIEW:
case IDENTIFY_USER:
case LOGOUT:
case URL:
Expand Down
1 change: 0 additions & 1 deletion BranchSDK/src/BranchIO/Defines.h
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,6 @@ class BRANCHIO_DLL_EXPORT Defines {
// V1 Endpoints
REGISTER_OPEN,
REGISTER_CLOSE,
REGISTER_VIEW,
LOGOUT,
URL,

Expand Down
12 changes: 0 additions & 12 deletions BranchSDK/src/BranchIO/Event/SessionEvent.h
Original file line number Diff line number Diff line change
Expand Up @@ -47,18 +47,6 @@ class BRANCHIO_DLL_EXPORT SessionOpenEvent : public SessionEvent {
BaseEvent& setLinkUrl(const String& url);
};

/**
* (Internal) Session Management Event -- View
*/
class BRANCHIO_DLL_EXPORT SessionViewEvent: public SessionEvent {
public:
/**
* Constructor.
*/
explicit SessionViewEvent() :
SessionEvent(Defines::APIEndpoint::REGISTER_VIEW, "View") {}
};

} // namespace BranchIO

#endif // BRANCHIO_EVENT_SESSIONEVENT_H__
4 changes: 2 additions & 2 deletions BranchSDK/src/BranchIO/Version.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#define BRANCHIO_VERSION_H__

#define BRANCHIO_VERSION_MAJOR 2
#define BRANCHIO_VERSION_MINOR 0
#define BRANCHIO_VERSION_REVISION 1
#define BRANCHIO_VERSION_MINOR 1
#define BRANCHIO_VERSION_REVISION 0

#endif // BRANCHIO_VERSION_H__
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.15)

project(root VERSION 2.0.1 LANGUAGES CXX)
project(root VERSION 2.1.0 LANGUAGES CXX)

# Enable Unit Testing.
# TODO: Investigate why this appears to be needed at the top level CMakeLists
Expand Down
4 changes: 4 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 2023-11-21 Version 2.1.0
* SDK-2041 - Stop calling /v1/profile and /v1/logout in setIdentity and logout APIs
* SDK-2126 - Remove references to registerView event

## 2023-02-16 Version 2.0.1
* INTENG-17565 - Added support for IEEE80211 networks adapters and improved code for searching network adapters and corresponding MAC and IP Addresses.
* INTENG-17552 - Added "userdata.developer_identity" in /v2/requests
Expand Down
2 changes: 1 addition & 1 deletion conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class BranchioConan(ConanFile):

# ----- Package metadata -----
name = "BranchIO"
version = "2.0.1"
version = "2.1.0"
license = "MIT"
description = "Branch Metrics deep linking and attribution analytics C++ SDK"
topics = (
Expand Down

0 comments on commit c653f50

Please sign in to comment.