Skip to content

Commit 1d58ea1

Browse files
committedSep 13, 2017
Adding new version 6.0.2 for this release
1 parent 2b15d4b commit 1d58ea1

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed
 

‎BaseClient/kvs.c

-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,6 @@ static void remove_pair(CybsMap *store, CybsTable *pair) {
7979
if ((!store) || (!pair)) {
8080
return;
8181
}
82-
pair->key = NULL;
8382
sort_pairs(store);
8483
--store->length;
8584
string pairKeyCopy((char *)pair->key);

‎BaseClient/util.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ const char CYBS_C_USE_AKAMAI[] = "sendToAkamai";
6868

6969

7070
/* Please do not modify these values */
71-
static const wchar_t CLIENT_LIBRARY_VERSION_VALUE[] = L"6.0.1";
71+
static const wchar_t CLIENT_LIBRARY_VERSION_VALUE[] = L"6.0.2";
7272
static const wchar_t CLIENT_LIBRARY_VALUE[] = L"C SOAP";
7373
static const wchar_t CLIENT_APPLICATION_VALUE[] = L"Simple Order API";
7474

‎Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
API_VERSION = 6.0.1
1+
API_VERSION = 6.0.2
22
PROD_NAME = simapi-c
33
ZIP_NAME = $(PROD_NAME)-linux
44
DIST_BASE = builds

‎mkinstall.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ rem This is the packaging batch file for Windows.
55
rem For Linux, run "make" in the client subdirectory.
66
rem *************************************************
77
set platform=%1
8-
set CLIENT_LIBRARY_VERSION_VALUE=6.0.1
8+
set CLIENT_LIBRARY_VERSION_VALUE=6.0.2
99

1010
set BUILD_DIR=builds
1111
if "%platform%"=="win32" (

0 commit comments

Comments
 (0)
Please sign in to comment.