Skip to content

Commit 6d0f779

Browse files
update DLLs to 2.5 releases
1 parent 55bca58 commit 6d0f779

File tree

9 files changed

+6
-4
lines changed

9 files changed

+6
-4
lines changed

raylib/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "2.5.dev4"
1+
__version__ = "2.5.0"

raylib/dynamic/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# Probably unnecessary, just covering all bases in case people add or remove dlls
99
MAC_NAMES = ['libraylib.2.5.0.dylib', 'libraylib.2.dylib', 'libraylib.dylib']
1010
LINUX_NAMES = ['libraylib.so.2.5.0','libraylib.so.2', 'libraylib.so']
11-
WINDOWS_NAMES = ['libraylib.dll', 'raylib.dll']
11+
WINDOWS_NAMES = ['raylib.dll', 'libraylib.dll']
1212

1313

1414
if platform.system() == "Darwin":

raylib/dynamic/libraylib.2.5.0.dylib

2.47 MB
Binary file not shown.

raylib/dynamic/libraylib.dylib

-920 KB
Binary file not shown.

raylib/dynamic/libraylib.dylib

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
libraylib.2.5.0.dylib

raylib/dynamic/libraylib.so

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
libraylib.so.2.5.0

raylib/dynamic/libraylib.so.2

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
libraylib.so.2.5.0

raylib/dynamic/libraylib.so.2.5.0

2.76 MB
Binary file not shown.

raylib/dynamic/raylib.dll

2.04 MB
Binary file not shown.

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
# This call to setup() does all the work
1111
setup(
1212
name="raylib",
13-
version="2.5.dev5",
13+
version="2.5.0",
1414
description="Python CFFI bindings for Raylib",
1515
long_description=README,
1616
long_description_content_type="text/markdown",
@@ -23,7 +23,7 @@
2323
"Programming Language :: Python :: 3",
2424
"Programming Language :: Python :: 3.7",
2525
],
26-
packages=["raylib", "raylib.dynamic", "raylib.static"],
26+
packages=["raylib", "raylib.dynamic", "raylib.static", "raylib.richlib"],
2727
include_package_data=True,
2828
install_requires=["cffi","inflection"],
2929
#cffi_modules=["raylib/build_mac.py:ffibuilder"], # this would build libs whenever the module is installed, but we are distributing static libs instead

0 commit comments

Comments
 (0)