diff --git a/BranchInstaller/Product.wxs b/BranchInstaller/Product.wxs index 02e8971..c0c4321 100644 --- a/BranchInstaller/Product.wxs +++ b/BranchInstaller/Product.wxs @@ -1,6 +1,6 @@ - + diff --git a/BranchSDK/src/BranchIO/Defines.cpp b/BranchSDK/src/BranchIO/Defines.cpp index 42db478..73e8cf7 100644 --- a/BranchSDK/src/BranchIO/Defines.cpp +++ b/BranchSDK/src/BranchIO/Defines.cpp @@ -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"; @@ -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; @@ -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: diff --git a/BranchSDK/src/BranchIO/Defines.h b/BranchSDK/src/BranchIO/Defines.h index c2df168..a54cdbb 100644 --- a/BranchSDK/src/BranchIO/Defines.h +++ b/BranchSDK/src/BranchIO/Defines.h @@ -83,7 +83,6 @@ class BRANCHIO_DLL_EXPORT Defines { // V1 Endpoints REGISTER_OPEN, REGISTER_CLOSE, - REGISTER_VIEW, LOGOUT, URL, diff --git a/BranchSDK/src/BranchIO/Event/SessionEvent.h b/BranchSDK/src/BranchIO/Event/SessionEvent.h index ed4a951..326af2d 100644 --- a/BranchSDK/src/BranchIO/Event/SessionEvent.h +++ b/BranchSDK/src/BranchIO/Event/SessionEvent.h @@ -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__ diff --git a/BranchSDK/src/BranchIO/Version.h b/BranchSDK/src/BranchIO/Version.h index 442b6bb..4034d74 100644 --- a/BranchSDK/src/BranchIO/Version.h +++ b/BranchSDK/src/BranchIO/Version.h @@ -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__ diff --git a/CMakeLists.txt b/CMakeLists.txt index f205d09..b4547f2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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 diff --git a/ChangeLog.md b/ChangeLog.md index c4838f2..0e23725 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -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 diff --git a/conanfile.py b/conanfile.py index ad91a8d..36811c5 100644 --- a/conanfile.py +++ b/conanfile.py @@ -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 = (