From 8eaca80295dd8efeada03a2ff6b9f73091c4485a Mon Sep 17 00:00:00 2001 From: Zachary Canann Date: Tue, 28 Mar 2023 00:24:55 -0700 Subject: [PATCH] Version bump --- GES.Engine.Memory/GES.Engine.Memory.csproj | 6 +++--- GES.Engine.Processes/GES.Engine.Processes.csproj | 6 +++--- GES.Engine.Scanning/GES.Engine.Scanning.csproj | 6 +++--- GES.Engine.Utils/GES.Engine.Common.csproj | 6 +++--- GES.Engine/GES.Engine.csproj | 6 +++--- GES/GES.csproj | 4 ++-- Release.py | 2 +- 7 files changed, 18 insertions(+), 18 deletions(-) diff --git a/GES.Engine.Memory/GES.Engine.Memory.csproj b/GES.Engine.Memory/GES.Engine.Memory.csproj index e75538b..2952b8a 100644 --- a/GES.Engine.Memory/GES.Engine.Memory.csproj +++ b/GES.Engine.Memory/GES.Engine.Memory.csproj @@ -3,7 +3,7 @@ netstandard2.1 latest - 2.1.5 + 2.1.6 FFCC GES Tool true @@ -21,8 +21,8 @@ true true - 2.1.5 - 2.1.5 + 2.1.6 + 2.1.6 diff --git a/GES.Engine.Processes/GES.Engine.Processes.csproj b/GES.Engine.Processes/GES.Engine.Processes.csproj index 1aa62c4..fc27270 100644 --- a/GES.Engine.Processes/GES.Engine.Processes.csproj +++ b/GES.Engine.Processes/GES.Engine.Processes.csproj @@ -3,9 +3,9 @@ netstandard2.1 latest - 2.1.5 - 2.1.5 - 2.1.5 + 2.1.6 + 2.1.6 + 2.1.6 ff02c859-7e0c-466a-8d97-eac2f037b653 diff --git a/GES.Engine.Scanning/GES.Engine.Scanning.csproj b/GES.Engine.Scanning/GES.Engine.Scanning.csproj index ee667bb..7a50456 100644 --- a/GES.Engine.Scanning/GES.Engine.Scanning.csproj +++ b/GES.Engine.Scanning/GES.Engine.Scanning.csproj @@ -3,7 +3,7 @@ netstandard2.1 latest - 2.1.5 + 2.1.6 GES engine component for performant memory scanning. GES achieves fast memory scanning (often faster than Cheat Engine) by leveraging multi-threaded parallelism along with single core parallelism via SIMD instructions. Scanners are JIT compiled into SSE, AVX, or AVX-512 instructions via RyuJIT through the System.Numerics.Vectors library. @@ -21,8 +21,8 @@ Scanners are JIT compiled into SSE, AVX, or AVX-512 instructions via RyuJIT thro true true - 2.1.5 - 2.1.5 + 2.1.6 + 2.1.6 diff --git a/GES.Engine.Utils/GES.Engine.Common.csproj b/GES.Engine.Utils/GES.Engine.Common.csproj index d2e429f..d70777a 100644 --- a/GES.Engine.Utils/GES.Engine.Common.csproj +++ b/GES.Engine.Utils/GES.Engine.Common.csproj @@ -3,9 +3,9 @@ netstandard2.1 latest - 2.1.5 - 2.1.5 - 2.1.5 + 2.1.6 + 2.1.6 + 2.1.6 diff --git a/GES.Engine/GES.Engine.csproj b/GES.Engine/GES.Engine.csproj index e720ca1..aaebeb2 100644 --- a/GES.Engine/GES.Engine.csproj +++ b/GES.Engine/GES.Engine.csproj @@ -15,7 +15,7 @@ - 2.1.5 + 2.1.6 false @@ -30,8 +30,8 @@ true true - 2.1.5 - 2.1.5 + 2.1.6 + 2.1.6 diff --git a/GES/GES.csproj b/GES/GES.csproj index ca6ed11..d49c475 100644 --- a/GES/GES.csproj +++ b/GES/GES.csproj @@ -12,8 +12,8 @@ $(NoWarn);NU1605 false Application.manifest - 2.1.5 - 2.1.5 + 2.1.6 + 2.1.6 True diff --git a/Release.py b/Release.py index 8199aa0..68723d3 100644 --- a/Release.py +++ b/Release.py @@ -23,7 +23,7 @@ def main(): for root, dirnames, filenames in os.walk(currentPath): for filename in filenames: if filename.lower().endswith(".csproj"): - replaceVersionInFile(join(root, filename), "2.1.5") + replaceVersionInFile(join(root, filename), "2.1.6") continue def replaceVersionInFile(filename, newVersion):