Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.21)
project(SDF_UTILITIES VERSION 2.6.15)
project(SDF_UTILITIES VERSION 2.6.16)

if(NOT TARGET sdfc)
find_package(SDFC 14.4.9)
Expand Down
2 changes: 1 addition & 1 deletion sdf2ascii.c
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
#include <mpi.h>
#endif

#define VERSION "2.6.15"
#define VERSION "2.6.16"

#define DBG_FLUSH() do { \
if (h && h->dbg_buf) { \
Expand Down
2 changes: 1 addition & 1 deletion sdf_python.c
Original file line number Diff line number Diff line change
Expand Up @@ -1870,7 +1870,7 @@ MOD_INIT(sdf)
if (!m)
return MOD_ERROR_VAL;

PyModule_AddStringConstant(m, "__version__", "2.6.15");
PyModule_AddStringConstant(m, "__version__", "2.6.16");
PyModule_AddStringConstant(m, "__commit_id__", SDF_COMMIT_ID);
PyModule_AddStringConstant(m, "__commit_date__", SDF_COMMIT_DATE);
PyModule_AddStringConstant(m, "__library_commit_id__",
Expand Down
3 changes: 1 addition & 2 deletions sdfdiff.c
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
#include <mpi.h>
#endif

#define VERSION "2.6.15"
#define VERSION "2.6.16"

#define MIN(a,b) (((a) < (b)) ? (a) : (b))
#define ABS(a) (((a) < 0.0) ? -(a) : (a))
Expand Down Expand Up @@ -1494,7 +1494,6 @@ int diff_mesh(sdf_file_t **handles, sdf_block_t *b1, sdf_block_t *b2, int inum)
int gotblock;
static int gotdiff = 0;
static const int fmtlen = 32;
static const int idxlen = 64;
// char idxstr[idxlen]; doesn't work with Microsoft Visual C, so:
char idxstr[64];
char *prestr;
Expand Down
2 changes: 1 addition & 1 deletion sdffilter.c
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
#include <mpi.h>
#endif

#define VERSION "2.6.15"
#define VERSION "2.6.16"

#define MIN(a,b) (((a) < (b)) ? (a) : (b))

Expand Down