From 19476f005bfd34d7d376532b2e176c2579ed0b1e Mon Sep 17 00:00:00 2001 From: Yan Pujante Date: Sat, 29 Oct 2022 10:49:53 -0700 Subject: [PATCH] Upgraded re-mock version --- README.md | 9 +++++++-- cmake/RECMakeOptions.cmake | 4 ++-- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 15d1f26..693d72c 100644 --- a/README.md +++ b/README.md @@ -20,8 +20,8 @@ Requirements * This project requires CMake (minimum version 3.13) to be properly installed (`cmake` executable must be in your `PATH`) * This project currently expects RE SDK 4.3.0 (Hi Res support), 4.2.0 or 4.1.0 to be installed on the machine (it will not download it for you) * Due to the RE SDK requirements, this project also requires python 3 to be installed -* It has been tested on macOS 10.14.6 with Xcode 9 installed -* It has been tested on macOS 11.1 with Xcode 12.3 installed and Apple Silicon (forces `x86_64` build to compile and run) +* It has been tested on macOS Big Sur (11.7) / Xcode 13.2.1 (requires macOS 15+) +* It has been tested on macOS 12.6 / Xcode 13.3 installed and Apple Silicon (forces `x86_64` build to compile and run) * It has been tested on Windows 10 with Visual Studio 16 2019 build tools Quick Starting guide @@ -318,6 +318,11 @@ It is strongly recommended checking the [re-blank-plugin](https://github.com/pon Release notes ------------- +#### 1.4.4 - 2022/10/29 + +- Uses re-mock 1.2.0 (better error reporting / bug fixes) +- Due to upgrade to Big Sur (macOS 11.7), this is now the macOS version that re-cmake is tested on (although it is expected to work on 10.15+). + #### 1.4.3 - 2022/02/01 - Fixes for Win 10 diff --git a/cmake/RECMakeOptions.cmake b/cmake/RECMakeOptions.cmake index 3cf198d..330a515 100644 --- a/cmake/RECMakeOptions.cmake +++ b/cmake/RECMakeOptions.cmake @@ -16,7 +16,7 @@ set(RE_CMAKE_MAJOR_VERSION 1) set(RE_CMAKE_MINOR_VERSION 4) -set(RE_CMAKE_PATCH_VERSION 1) +set(RE_CMAKE_PATCH_VERSION 4) # Location of RE SDK: can be set when invoking cmake => cmake -D "RE_SDK_ROOT:PATH=/path/to/re_sdk" # or via -p option in configure.py script or in cmake-gui @@ -71,4 +71,4 @@ set(re-logging_GIT_TAG "v1.0.1" CACHE STRING "re-logging git tag") # Git repo/tag for re-mock #------------------------------------------------------------------------ set(re-mock_GIT_REPO "https://github.com/pongasoft/re-mock" CACHE STRING "re-mock git repository url") -set(re-mock_GIT_TAG "v1.0.1" CACHE STRING "re-mock git tag") +set(re-mock_GIT_TAG "v1.2.0" CACHE STRING "re-mock git tag")