Skip to content

Commit ced3184

Browse files
committed
Bunp version + changelog
1 parent 8048b6d commit ced3184

File tree

2 files changed

+17
-2
lines changed

2 files changed

+17
-2
lines changed

CHANGELOG.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,22 @@
1-
Change Log
1+
# Change Log
22

33
Release history on Github: https://github.com/pywavefront/PyWavefront/releases
44

5+
## 1.2.0
6+
7+
* Pywavefront is now using `pathlib` internally. `Path` instances can also
8+
be passed to all parsers.
9+
* Bugfix: Texture paths in materials should no longer be mangled when
10+
containing spaces or special characters. It should always be read
11+
exactly as it appears in the file.
12+
* Texture: `file_name` property added as a more robust way to get
13+
the texture file name without path. This should even work for
14+
hardcoded windows path on Linux and OS X.
15+
* Texture: Added `find` method searching for the exact texture name in a directory
16+
and all subdirectories. By default it will search from the obj file's location.
17+
* Visualization: `draw` methods now supports `lighting_enabled` and `textures_enabled`
18+
making the user able to toggle on/off lighting and texturing.
19+
520
## 1.1.0
621

722
* Fixed an incompatibility issue related to image loading in pyglet 1.4.x

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from setuptools import setup
22

3-
VERSION = '1.1.0'
3+
VERSION = '1.2.0'
44

55
setup(
66
name='PyWavefront',

0 commit comments

Comments
 (0)