Skip to content

Commit

Permalink
Bump version to 11.1.0 (#426)
Browse files Browse the repository at this point in the history
* Add back O1 flag
  • Loading branch information
juliannguyen4 committed Apr 18, 2023
1 parent acfb930 commit 8b1ebbe
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
11.0.1
11.1.0
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -202,7 +202,7 @@ def clean():
'make',
'V=' + str(self.verbose),
'EVENT_LIB='+EVENT_LIB,
]
]

def compile():
print(cmd, library_dirs, libraries)
Expand Down
2 changes: 1 addition & 1 deletion src/main/aerospike.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 8b1ebbe

Please sign in to comment.