From 8b1ebbe6059984bc7a3cb4abcbf7eb2c2ece23b6 Mon Sep 17 00:00:00 2001 From: juliannguyen4 <109386615+juliannguyen4@users.noreply.github.com> Date: Tue, 18 Apr 2023 16:15:53 -0700 Subject: [PATCH] Bump version to 11.1.0 (#426) * Add back O1 flag --- VERSION | 2 +- setup.py | 4 ++-- src/main/aerospike.c | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/VERSION b/VERSION index 071973805..68d8f15e2 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -11.0.1 +11.1.0 diff --git a/setup.py b/setup.py index f563f6a57..e0c316f34 100644 --- a/setup.py +++ b/setup.py @@ -59,7 +59,7 @@ ['/usr/local/opt/openssl/include'] + \ ['aerospike-client-c/modules/common/src/include'] extra_compile_args = [ - '-std=gnu99', '-g', '-Wall', '-fPIC', '-DDEBUG', + '-std=gnu99', '-g', '-Wall', '-fPIC', '-DDEBUG', '-O1', '-fno-common', '-fno-strict-aliasing', '-Wno-strict-prototypes', '-D_FILE_OFFSET_BITS=64', '-D_REENTRANT', '-DMARCH_' + machine, @@ -202,7 +202,7 @@ def clean(): 'make', 'V=' + str(self.verbose), 'EVENT_LIB='+EVENT_LIB, - ] + ] def compile(): print(cmd, library_dirs, libraries) diff --git a/src/main/aerospike.c b/src/main/aerospike.c index 7ccc80a9d..f1562a238 100644 --- a/src/main/aerospike.c +++ b/src/main/aerospike.c @@ -153,7 +153,7 @@ static int Aerospike_Clear(PyObject *aerospike) MOD_INIT(aerospike) { - const char version[8] = "11.0.1"; + const char version[8] = "11.1.0"; // Makes things "thread-safe" PyEval_InitThreads(); int i = 0;