Skip to content

Commit c24c00e

Browse files
committedAug 7, 2018
Bump version to 1.3.1
1 parent 9826fc2 commit c24c00e

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed
 

‎deployments/UnityMixpanel/Assets/Mixpanel/Mixpanel.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
*** do not modify the line below, it is updated by the build scripts ***
3-
Mixpanel SDK for Unity version v1.3.0
3+
Mixpanel SDK for Unity version v1.3.1
44
*/
55

66
#if !UNITY_PRO_LICENSE && (UNITY_2_6||UNITY_2_6_1||UNITY_3_0||UNITY_3_0_0||UNITY_3_1||UNITY_3_2||UNITY_3_3||UNITY_3_4||UNITY_3_5||UNITY_4_0||UNITY_4_0_1||UNITY_4_1||UNITY_4_2||UNITY_4_3||UNITY_4_5||UNITY_4_6)

‎native/include/mixpanel/mixpanel.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
*** do not modify the line below, it is updated by the build scripts ***
3-
Mixpanel C++ SDK version v1.3.0
3+
Mixpanel C++ SDK version v1.3.1
44
*/
55

66
#ifndef _MIXPANEL_HPP_

‎native/source/dependencies/nano/include/nanosocket/nanosocket.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -383,7 +383,6 @@ class MBEDTLSSocket : public Socket
383383
public:
384384
MBEDTLSSocket()
385385
{
386-
mixpanel_mbedtls_debug_set_threshold(0);
387386
mixpanel_mbedtls_net_init( &net );
388387
mixpanel_mbedtls_ssl_init( &ssl );
389388
mixpanel_mbedtls_ssl_config_init( &conf );
@@ -477,6 +476,7 @@ class MBEDTLSSocket : public Socket
477476

478477
virtual int close() override
479478
{
479+
//mixpanel_mbedtls_debug_set_threshold(1000);
480480
mixpanel_mbedtls_net_free( &net );
481481
//mixpanel_mbedtls_x509_crt_free( &cacert );
482482
mixpanel_mbedtls_ssl_free( &ssl );

‎native/source/mixpanel/detail/mixpanel.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
namespace mixpanel
2424
{
25-
static const std::string sdk_version = "v1.3.0";
25+
static const std::string sdk_version = "v1.3.1";
2626

2727
// helper function to get the time since epoch as double / float etc.
2828
template <typename T>

0 commit comments

Comments
 (0)
Please sign in to comment.