Skip to content

Commit 38d9cee

Browse files
committed
Bump version to 'v0.9.0b9'.
1 parent 10ab462 commit 38d9cee

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/generate-docs.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,12 @@ jobs:
3737
3838
if [ "$RUNNER_OS" == "macOS" ]; then
3939
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
40+
otool -L ./sdl3/bin/darwin-arm64/libSDL3_ttf.dylib
4041
echo "/opt/homebrew/lib" >> $GITHUB_ENV
4142
brew reinstall freetype
43+
otool -L ./sdl3/bin/darwin-arm64/libSDL3_ttf.dylib
4244
install_name_tool -add_rpath /opt/homebrew/lib ./sdl3/bin/darwin-arm64/libSDL3_ttf.dylib
4345
otool -L ./sdl3/bin/darwin-arm64/libSDL3_ttf.dylib
44-
echo "DYLD_LIBRARY_PATH=/opt/homebrew/lib:$DYLD_LIBRARY_PATH" >> $GITHUB_ENV
4546
fi
4647
4748
- name: Generate docs.

sdl3/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""A pure Python wrapper for SDL3."""
22

3-
__version__ = "0.9.0b8"
3+
__version__ = "0.9.0b9"
44

55
import sys, os, requests, ctypes, platform, keyword, inspect, \
66
asyncio, aiohttp, re, typing, array, atexit, packaging.version

0 commit comments

Comments
 (0)