diff --git a/.travis/aerospike.conf b/.travis/aerospike.conf index 208d7e942..6c9145bd7 100644 --- a/.travis/aerospike.conf +++ b/.travis/aerospike.conf @@ -51,7 +51,6 @@ network { namespace test { replication-factor 2 memory-size 1G - ldt-enabled true default-ttl 30d # 30 days, use 0 to never expire/evict. storage-engine memory } diff --git a/VERSION b/VERSION index b1b25a5ff..585940699 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.2.2 +2.2.3 diff --git a/setup.py b/setup.py index ae6efef76..a750c74a5 100644 --- a/setup.py +++ b/setup.py @@ -102,6 +102,7 @@ def resolve_c_client(lua_src_path): print('info: Executing', './scripts/aerospike-client-c.sh', file=sys.stdout) os.chmod('./scripts/aerospike-client-c.sh', 0o0755) + os.chmod('./scripts/os_version', 0o0755) p = Popen(['./scripts/aerospike-client-c.sh'], env=os.environ) rc = p.wait() diff --git a/src/main/aerospike.c b/src/main/aerospike.c index 660218cd4..1d202a657 100644 --- a/src/main/aerospike.c +++ b/src/main/aerospike.c @@ -82,7 +82,7 @@ AerospikeConstants operator_constants[] = { MOD_INIT(aerospike) { - const char version[8] = "2.2.2"; + const char version[8] = "2.2.3"; // Makes things "thread-safe" PyEval_InitThreads(); int i = 0;