Skip to content

Commit 89cae2d

Browse files
committed
bumped version to 5.1.2
1 parent 6cedba5 commit 89cae2d

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ include(FetchContent)
179179
FetchContent_Declare(libmem-config URL "https://raw.githubusercontent.com/rdbo/libmem/config-v1/libmem-config.cmake" DOWNLOAD_NO_EXTRACT TRUE)
180180
FetchContent_MakeAvailable(libmem-config)
181181
set(CMAKE_PREFIX_PATH "${libmem-config_SOURCE_DIR}" "${CMAKE_PREFIX_PATH}")
182-
set(LIBMEM_DOWNLOAD_VERSION "5.1.1")
182+
set(LIBMEM_DOWNLOAD_VERSION "5.1.2")
183183
184184
# Find libmem package
185185
find_package(libmem CONFIG REQUIRED)

bindings/python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def get_operating_system():
2424
} if operating_system == "windows" else {}
2525

2626
def get_version():
27-
return "5.1.1"
27+
return "5.1.2"
2828

2929
def readme():
3030
open("README.md", "r").read()

bindings/rust/Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bindings/rust/libmem-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "libmem-sys"
3-
version = "5.1.1"
3+
version = "5.1.2"
44
authors = ["rdbo"]
55
edition = "2021"
66
description = "Advanced Game Hacking Library (Windows/Linux/FreeBSD)"

bindings/rust/libmem/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "libmem"
3-
version = "5.1.1"
3+
version = "5.1.2"
44
authors = ["rdbo"]
55
edition = "2021"
66
description = "Advanced Game Hacking Library (Windows/Linux/FreeBSD)"
@@ -22,4 +22,4 @@ fetch = ["libmem-sys/fetch"]
2222

2323
[dependencies]
2424
bitflags = "2.5.0"
25-
libmem-sys = { version = "5.1.1", path = "../libmem-sys", default-features = false }
25+
libmem-sys = { version = "5.1.2", path = "../libmem-sys", default-features = false }

libmem-config.cmake

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
# fetchcontent_makeavailable(libmem-config)
1515
# set(CMAKE_PREFIX_PATH "${libmem-config_SOURCE_DIR}" "${CMAKE_PREFIX_PATH}")
1616
#
17-
# set(LIBMEM_DOWNLOAD_VERSION "5.1.1")
17+
# set(LIBMEM_DOWNLOAD_VERSION "5.1.2")
1818
# find_package(libmem CONFIG REQUIRED)
1919
# [...]
2020
# target_link_libraries(my-target PRIVATE libmem::libmem)
@@ -32,7 +32,7 @@
3232
#
3333
# LIBMEM_DOWNLOAD_VERSION (required if LIBMEM_ROOT is empty and LIBMEM_DOWNLOAD_URL contains "{{version}}")
3434
# libmem version to download, used to construct LIBMEM_DOWNLOAD_URL.
35-
# Example: "5.1.1"
35+
# Example: "5.1.2"
3636
#
3737
# LIBMEM_DOWNLOAD_TARGET (optional)
3838
# libmem target to download, used to construct LIBMEM_DOWNLOAD_URL.
@@ -72,7 +72,7 @@ endif()
7272

7373
set(LIBMEM_ROOT "" CACHE PATH "Path to the root folder of the pre-built version of libmem (containing include and lib folders, downloaded automatically if empty)")
7474
set(LIBMEM_DOWNLOAD_URL "https://github.com/rdbo/libmem/releases/download/{{version}}/libmem-{{version}}-{{target}}.tar.gz" CACHE STRING "URL for downloading the archive containing the pre-built version of libmem")
75-
set(LIBMEM_DOWNLOAD_VERSION "" CACHE STRING "libmem version to download, used to construct LIBMEM_DOWNLOAD_URL (e.g. \"5.1.1\")")
75+
set(LIBMEM_DOWNLOAD_VERSION "" CACHE STRING "libmem version to download, used to construct LIBMEM_DOWNLOAD_URL (e.g. \"5.1.2\")")
7676
set(LIBMEM_DOWNLOAD_TARGET "" CACHE STRING "libmem target to download, used to construct LIBMEM_DOWNLOAD_URL (detected automatically if empty)")
7777
set(LIBMEM_USE_SHARED_LIBS OFF CACHE BOOL "Whether to use libmem as a shared library (ON) or as a static library (OFF)")
7878

0 commit comments

Comments
 (0)