From a0e1b701664afb0ef234bf1b75e8d79ffefeaa25 Mon Sep 17 00:00:00 2001 From: rdbo Date: Wed, 2 Oct 2024 16:57:32 -0300 Subject: [PATCH] version bump to 5.0.2 --- README.md | 2 +- bindings/python/setup.py | 2 +- bindings/rust/Cargo.lock | 4 ++-- bindings/rust/libmem-sys/Cargo.toml | 2 +- bindings/rust/libmem/Cargo.toml | 4 ++-- libmem-config.cmake | 6 +++--- 6 files changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index eb376963..3f15f7ea 100644 --- a/README.md +++ b/README.md @@ -179,7 +179,7 @@ include(FetchContent) FetchContent_Declare(libmem-config URL "https://raw.githubusercontent.com/rdbo/libmem/config-v1/libmem-config.cmake" DOWNLOAD_NO_EXTRACT TRUE) FetchContent_MakeAvailable(libmem-config) set(CMAKE_PREFIX_PATH "${libmem-config_SOURCE_DIR}" "${CMAKE_PREFIX_PATH}") -set(LIBMEM_DOWNLOAD_VERSION "5.0.1") +set(LIBMEM_DOWNLOAD_VERSION "5.0.2") # Find libmem package find_package(libmem CONFIG REQUIRED) diff --git a/bindings/python/setup.py b/bindings/python/setup.py index 493b3a73..178950e0 100644 --- a/bindings/python/setup.py +++ b/bindings/python/setup.py @@ -24,7 +24,7 @@ def get_operating_system(): } if operating_system == "windows" else {} def get_version(): - return "5.0.1" + return "5.0.2" def readme(): open("README.md", "r").read() diff --git a/bindings/rust/Cargo.lock b/bindings/rust/Cargo.lock index 7b3ac5c5..3db80dcc 100644 --- a/bindings/rust/Cargo.lock +++ b/bindings/rust/Cargo.lock @@ -378,7 +378,7 @@ checksum = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd" [[package]] name = "libmem" -version = "5.0.1" +version = "5.0.2" dependencies = [ "bitflags 2.5.0", "libmem-sys", @@ -386,7 +386,7 @@ dependencies = [ [[package]] name = "libmem-sys" -version = "5.0.1" +version = "5.0.2" dependencies = [ "flate2", "reqwest", diff --git a/bindings/rust/libmem-sys/Cargo.toml b/bindings/rust/libmem-sys/Cargo.toml index d6707d60..1ecdfc29 100644 --- a/bindings/rust/libmem-sys/Cargo.toml +++ b/bindings/rust/libmem-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libmem-sys" -version = "5.0.1" +version = "5.0.2" authors = ["rdbo"] edition = "2021" description = "Advanced Game Hacking Library (Windows/Linux/FreeBSD)" diff --git a/bindings/rust/libmem/Cargo.toml b/bindings/rust/libmem/Cargo.toml index ed279d39..e3bef6cf 100644 --- a/bindings/rust/libmem/Cargo.toml +++ b/bindings/rust/libmem/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libmem" -version = "5.0.1" +version = "5.0.2" authors = ["rdbo"] edition = "2021" description = "Advanced Game Hacking Library (Windows/Linux/FreeBSD)" @@ -22,4 +22,4 @@ fetch = ["libmem-sys/fetch"] [dependencies] bitflags = "2.5.0" -libmem-sys = { version = "5.0.1", path = "../libmem-sys", default-features = false } +libmem-sys = { version = "5.0.2", path = "../libmem-sys", default-features = false } diff --git a/libmem-config.cmake b/libmem-config.cmake index 49e19b53..7d5b4863 100644 --- a/libmem-config.cmake +++ b/libmem-config.cmake @@ -14,7 +14,7 @@ # fetchcontent_makeavailable(libmem-config) # set(CMAKE_PREFIX_PATH "${libmem-config_SOURCE_DIR}" "${CMAKE_PREFIX_PATH}") # -# set(LIBMEM_DOWNLOAD_VERSION "5.0.1") +# set(LIBMEM_DOWNLOAD_VERSION "5.0.2") # find_package(libmem CONFIG REQUIRED) # [...] # target_link_libraries(my-target PRIVATE libmem::libmem) @@ -32,7 +32,7 @@ # # LIBMEM_DOWNLOAD_VERSION (required if LIBMEM_ROOT is empty and LIBMEM_DOWNLOAD_URL contains "{{version}}") # libmem version to download, used to construct LIBMEM_DOWNLOAD_URL. -# Example: "5.0.1" +# Example: "5.0.2" # # LIBMEM_DOWNLOAD_TARGET (optional) # libmem target to download, used to construct LIBMEM_DOWNLOAD_URL. @@ -72,7 +72,7 @@ endif() 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)") 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") -set(LIBMEM_DOWNLOAD_VERSION "" CACHE STRING "libmem version to download, used to construct LIBMEM_DOWNLOAD_URL (e.g. \"5.0.1\")") +set(LIBMEM_DOWNLOAD_VERSION "" CACHE STRING "libmem version to download, used to construct LIBMEM_DOWNLOAD_URL (e.g. \"5.0.2\")") set(LIBMEM_DOWNLOAD_TARGET "" CACHE STRING "libmem target to download, used to construct LIBMEM_DOWNLOAD_URL (detected automatically if empty)") set(LIBMEM_USE_SHARED_LIBS OFF CACHE BOOL "Whether to use libmem as a shared library (ON) or as a static library (OFF)")