Skip to content

Commit bba09a3

Browse files
committed
likely 1.3.0 release
1 parent 944a801 commit bba09a3

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

CHANGELOG.rst

+4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
===========
22
Changelog
33
===========
4+
1.3.0
5+
* Updated backend to use python-cffi instead of ctypes. This gives decent
6+
boost to speed in CPython and a drastic to boost in speed in PyPy.
7+
48
1.2.0
59
* The set_colors method now changes the default colors used by the draw_*
610
methods. You can use Python's Ellipsis to explicitly select default colors

build_libtcod.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
#!/usr/bin/env python3
22

3-
from cffi import FFI
3+
import sys
44

55
import platform
66

7+
from cffi import FFI
8+
9+
710
def _get_library_crossplatform():
811
bits, linkage = platform.architecture()
912
if 'win32' in sys.platform:

tdl/version.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.2.0
1+
1.3.0

0 commit comments

Comments
 (0)