diff --git a/bindings/python/setup.py b/bindings/python/setup.py index a455a30b..a835a831 100644 --- a/bindings/python/setup.py +++ b/bindings/python/setup.py @@ -12,7 +12,7 @@ additional_library_dirs = [] def get_version(): - return "5.0.0-pre6" + return "5.0.0" def get_operating_system(): if sys.platform.find("bsd") != -1: diff --git a/bindings/rust/libmem/Cargo.toml b/bindings/rust/libmem/Cargo.toml index 4df81254..3a6bada8 100644 --- a/bindings/rust/libmem/Cargo.toml +++ b/bindings/rust/libmem/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libmem" -version = "5.0.0-pre6" +version = "5.0.0" 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.0-pre6", path = "../libmem-sys", default-features = false } +libmem-sys = { version = "5.0.0", path = "../libmem-sys", default-features = false } diff --git a/libmem-config.cmake b/libmem-config.cmake index 3340b22f..f6bdb049 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 "4.4.0-pre1") +# set(LIBMEM_DOWNLOAD_VERSION "5.0.0") # 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: "4.4.0-pre1" +# Example: "5.0.0-pre1" # # 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. \"4.4.0-pre1\")") +set(LIBMEM_DOWNLOAD_VERSION "" CACHE STRING "libmem version to download, used to construct LIBMEM_DOWNLOAD_URL (e.g. \"5.0.0-pre1\")") 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)")