Skip to content

Commit

Permalink
bumped version number
Browse files Browse the repository at this point in the history
  • Loading branch information
rdbo committed Jun 12, 2024
1 parent 19b7aae commit 1bd2fab
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion bindings/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
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.0-pre6"
version = "5.0.0"
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.0-pre6", path = "../libmem-sys", default-features = false }
libmem-sys = { version = "5.0.0", 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 "4.4.0-pre1")
# set(LIBMEM_DOWNLOAD_VERSION "5.0.0")
# 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: "4.4.0-pre1"
# Example: "5.0.0-pre1"
#
# 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. \"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)")

Expand Down

0 comments on commit 1bd2fab

Please sign in to comment.