From 0ed8f4c1a7aa7fd17d58f9a226ef7bb839c32d1e 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 --- 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 e14a0f66413..d18c275b1c3 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))