From 9609eb2cf687984277185813fdfe81b8b200377b Mon Sep 17 00:00:00 2001 From: "Michael R. Crusoe" Date: Thu, 2 Feb 2023 19:03:13 +0100 Subject: [PATCH] prepare to release 0.7.4 --- meson.build | 2 +- simde/simde-common.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/meson.build b/meson.build index 64121a00b..b87e3a165 100644 --- a/meson.build +++ b/meson.build @@ -2,7 +2,7 @@ project('SIMDe', 'c', 'cpp', default_options: ['c_std=c99'], license: 'MIT', meson_version : '>=0.54.0', - version: '0.7.3') + version: '0.7.4') # also update SIMDE_VESION_* in simde/simde-common.h cc = meson.get_compiler('c') diff --git a/simde/simde-common.h b/simde/simde-common.h index 9c333e998..dc3efd4e8 100644 --- a/simde/simde-common.h +++ b/simde/simde-common.h @@ -31,7 +31,7 @@ #define SIMDE_VERSION_MAJOR 0 #define SIMDE_VERSION_MINOR 7 -#define SIMDE_VERSION_MICRO 3 +#define SIMDE_VERSION_MICRO 4 #define SIMDE_VERSION HEDLEY_VERSION_ENCODE(SIMDE_VERSION_MAJOR, SIMDE_VERSION_MINOR, SIMDE_VERSION_MICRO) // Also update meson.build in the root directory of the repository