Skip to content

Commit

Permalink
Bump version to 2.2.10
Browse files Browse the repository at this point in the history
  • Loading branch information
vveljko committed Oct 5, 2017
1 parent e57b269 commit c40a87a
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 10 deletions.
6 changes: 5 additions & 1 deletion .pubnub.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
name: c-core
version: 2.2.9
version: 2.2.10
scm: github.com/pubnub/c-core
changelog:
- version: v2.2.10
changes:
- type: bug
text: Fix build issues on Mac
- version: v2.2.9
changes:
- type: bug
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.2.9
2.2.10
2 changes: 1 addition & 1 deletion freertos/pubnub_version_freertos.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#include "pubnub_version.h"

#define PUBNUB_SDK_NAME "FreeRTOS"
#define PUBNUB_SDK_VERSION "2.2.9"
#define PUBNUB_SDK_VERSION "2.2.10"


char const *pubnub_sdk_name(void)
Expand Down
2 changes: 1 addition & 1 deletion microchip_harmony/pubnub_version_harmony.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#include "pubnub_version.h"

#define PUBNUB_SDK_NAME "Microchip.Harmony"
#define PUBNUB_SDK_VERSION "2.2.9"
#define PUBNUB_SDK_VERSION "2.2.10"


char const *pubnub_sdk_name(void)
Expand Down
2 changes: 1 addition & 1 deletion openssl/pubnub_version_openssl.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#include "pubnub_version.h"

#define PUBNUB_SDK_NAME "OpenSSL"
#define PUBNUB_SDK_VERSION "2.2.9"
#define PUBNUB_SDK_VERSION "2.2.10"


char const *pubnub_sdk_name(void)
Expand Down
2 changes: 1 addition & 1 deletion posix/pubnub_version_posix.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#include "pubnub_version.h"

#define PUBNUB_SDK_NAME "POSIX"
#define PUBNUB_SDK_VERSION "2.2.9"
#define PUBNUB_SDK_VERSION "2.2.10"


char const *pubnub_sdk_name(void)
Expand Down
9 changes: 6 additions & 3 deletions qt/pubnub_qt.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -515,9 +515,12 @@ void pubnub_qt::sslErrors(QNetworkReply* reply,const QList<QSslError> &errors)
}


extern "C" char const *pubnub_sdk_name() { return "Qt5"; }
#define PUBNUB_SDK_NAME "Qt5"
#define PUBNUB_SDK_VERSION "2.2.10"

extern "C" char const *pubnub_uname() { return "Qt5%2F2.2.9"; }
extern "C" char const *pubnub_sdk_name() { return PUBNUB_SDK_NAME; }

extern "C" char const *pubnub_version() { return "2.2.9"; }
extern "C" char const *pubnub_uname() { return PUBNUB_SDK_NAME "%2F" PUBNUB_SDK_VERSION; }

extern "C" char const *pubnub_version() { return PUBNUB_SDK_VERSION; }

2 changes: 1 addition & 1 deletion windows/pubnub_version_windows.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#include "pubnub_version.h"

#define PUBNUB_SDK_NAME "Windows"
#define PUBNUB_SDK_VERSION "2.2.9"
#define PUBNUB_SDK_VERSION "2.2.10"


char const *pubnub_sdk_name(void)
Expand Down

0 comments on commit c40a87a

Please sign in to comment.