From 771bde376c9c317e2a67d2e8c7a63b7b7d23afcd Mon Sep 17 00:00:00 2001 From: Admiral-Fish Date: Wed, 5 Jun 2024 19:13:22 -0700 Subject: [PATCH] Version bump --- Source/CMakeLists.txt | 2 +- Source/Core/RNG/SIMD.hpp | 10 +++++----- Source/Form/version.h.in | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Source/CMakeLists.txt b/Source/CMakeLists.txt index b4ccd4b59..40f8b0b9b 100644 --- a/Source/CMakeLists.txt +++ b/Source/CMakeLists.txt @@ -1,4 +1,4 @@ -project(PokeFinder VERSION 4.1.2) +project(PokeFinder VERSION 4.2.0) set(CMAKE_CXX_STANDARD 20) set(CMAKE_CXX_STANDARD_REQUIRED ON) diff --git a/Source/Core/RNG/SIMD.hpp b/Source/Core/RNG/SIMD.hpp index 6e9ac6565..1a5507c80 100644 --- a/Source/Core/RNG/SIMD.hpp +++ b/Source/Core/RNG/SIMD.hpp @@ -42,7 +42,7 @@ union alignas(16) vuint128 { }; /** - * @brief Computers the bitwise AND of each 32bit number pair in the vector + * @brief Computes the bitwise AND of each 32bit number pair in the vector * * @param x First operand * @param y Second operand @@ -128,7 +128,7 @@ inline vuint32x4 v32x4_load(const u32 *address) } /** - * @brief Computers the bitwise OR of each 32bit number pair in the vector + * @brief Computes the bitwise OR of each 32bit number pair in the vector * * @param x First operand * @param y Second operand @@ -205,7 +205,7 @@ inline vuint32x4 v32x4_set(u32 x0, u32 x1, u32 x2, u32 x3) } /** - * @brief Computers the bitwise left shift of each 32bit number pair in the vector + * @brief Computes the bitwise left shift of each 32bit number pair in the vector * * @tparam shift Amount to shift by * @param value Input vector @@ -229,7 +229,7 @@ inline vuint32x4 v32x4_shl(vuint32x4 value) } /** - * @brief Computers the bitwise right shift of each 32bit number pair in the vector + * @brief Computes the bitwise right shift of each 32bit number pair in the vector * * @tparam shift Amount to shift by * @param value Input vector @@ -274,7 +274,7 @@ inline void v32x4_store(u32 *address, vuint32x4 value) } /** - * @brief Computers the bitwise XOR of each 32bit number pair in the vector + * @brief Computes the bitwise XOR of each 32bit number pair in the vector * * @param x First operand * @param y Second operand diff --git a/Source/Form/version.h.in b/Source/Form/version.h.in index 1c823fda0..c31f00d86 100644 --- a/Source/Form/version.h.in +++ b/Source/Form/version.h.in @@ -1,7 +1,7 @@ #ifndef VERSION_H #define VERSION_H -#define POKEFINDER_VERSION "4.1.2" +#define POKEFINDER_VERSION "4.2.0" #define GIT_BRANCH "@GIT_BRANCH@" #define GIT_COMMIT "@GIT_COMMIT@"