Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
Admiral-Fish committed Jun 6, 2024
1 parent 50e086d commit 771bde3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Source/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
10 changes: 5 additions & 5 deletions Source/Core/RNG/SIMD.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Source/Form/version.h.in
Original file line number Diff line number Diff line change
@@ -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@"

Expand Down

0 comments on commit 771bde3

Please sign in to comment.