Skip to content

Commit

Permalink
version bump to 5.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
rdbo committed Oct 2, 2024
1 parent 8138d7f commit a0e1b70
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion bindings/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
4 changes: 2 additions & 2 deletions bindings/rust/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion bindings/rust/libmem-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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)"
Expand Down
4 changes: 2 additions & 2 deletions bindings/rust/libmem/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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)"
Expand All @@ -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 }
6 changes: 3 additions & 3 deletions libmem-config.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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.
Expand Down Expand Up @@ -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)")

Expand Down

0 comments on commit a0e1b70

Please sign in to comment.