Skip to content

Commit a2e4e3c

Browse files
committed
updating version number in prep for release
1 parent 075ff0c commit a2e4e3c

2 files changed

Lines changed: 5 additions & 4 deletions

File tree

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ PROJECT(MACSIO)
33
CMAKE_MINIMUM_REQUIRED(VERSION 2.8)
44

55
SET(MACSIO_MAJOR_VERSION 1)
6-
SET(MACSIO_MINOR_VERSION 0)
6+
SET(MACSIO_MINOR_VERSION 1)
77
SET(MACSIO_PATCH_VERSION 0)
88
SET(MACSIO_VERSION
99
"${MACSIO_MAJOR_VERSION}.${MACSIO_MINOR_VERSION}.${MACSIO_PATCH_VERSION}")

macsio/macsio_data.c

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -287,15 +287,16 @@ make_random_object_recurse(int nthings, int depth)
287287
json_object *
288288
MACSIO_DATA_MakeRandomObject(int nbytes)
289289
{
290-
json_object *first_attempt = make_random_object_recurse(nbytes, 0);
291-
/*nbytes = first_attempt->*/
290+
/*json_object *first_attempt = make_random_object_recurse(nbytes, 0); */
291+
return 0;
292292
}
293293

294294
json_object *
295295
MACSIO_DATA_MakeRandomTable(int nbytes)
296296
{
297297
int divisor = random() % 10 + 1;
298298
int nbytes_per_entry = random() % (nbytes / divisor) + 4;
299+
return 0;
299300
}
300301

301302
//#warning NEED TO REPLACE STRINGS WITH KEYS FOR MESH PARAMETERS
@@ -1297,4 +1298,4 @@ MACSIO_DATA_EvolveDataset(json_object *main_obj, int *dataset_evolved, float fac
12971298
json_object_array_add(vars_array, make_scalar_var(ndims, dims, bounds, centering, type, name));
12981299

12991300
return main_obj;
1300-
}
1301+
}

0 commit comments

Comments
 (0)