From 74be2b69863cb1e0b9f0ddf4e2806bd106684296 Mon Sep 17 00:00:00 2001 From: Justin King Date: Mon, 11 Apr 2022 09:41:27 -0700 Subject: [PATCH] [C++] Update version to 4.10 Signed-off-by: Justin King --- runtime/Cpp/runtime/src/Version.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/runtime/Cpp/runtime/src/Version.h b/runtime/Cpp/runtime/src/Version.h index e14a0f6641..d18c275b1c 100644 --- a/runtime/Cpp/runtime/src/Version.h +++ b/runtime/Cpp/runtime/src/Version.h @@ -28,8 +28,8 @@ #include "antlr4-common.h" #define ANTLRCPP_VERSION_MAJOR 4 -#define ANTLRCPP_VERSION_MINOR 9 -#define ANTLRCPP_VERSION_PATCH 3 +#define ANTLRCPP_VERSION_MINOR 10 +#define ANTLRCPP_VERSION_PATCH 0 #define ANTLRCPP_MAKE_VERSION(major, minor, patch) ((major) * 100000 + (minor) * 1000 + (patch))