Skip to content

Commit aab3314

Browse files
committed
3.3.1 Release Version bump
1 parent 57addf0 commit aab3314

File tree

5 files changed

+14
-4
lines changed

5 files changed

+14
-4
lines changed

CHANGES.rst

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
11
Changelog (Pillow)
22
==================
33

4+
3.3.1 (2016-08-18)
5+
------------------
6+
7+
- Fix C90 compilation error for Tcl / Tk rewrite #2033
8+
[matthew-brett]
9+
10+
- Fix image loading when rotating by 0 deg #2052
11+
[homm]
12+
13+
414
3.3.0 (2016-07-01)
515
------------------
616

PIL/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# ;-)
1313

1414
VERSION = '1.1.7' # PIL version
15-
PILLOW_VERSION = '3.3.0' # Pillow
15+
PILLOW_VERSION = '3.3.1' # Pillow
1616

1717
_plugins = ['BmpImagePlugin',
1818
'BufrStubImagePlugin',

_imaging.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
* See the README file for information on usage and redistribution.
7272
*/
7373

74-
#define PILLOW_VERSION "3.3.0"
74+
#define PILLOW_VERSION "3.3.1"
7575

7676
#include "Python.h"
7777

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 3.3.0.{build}
1+
version: 3.3.1.{build}
22
clone_folder: c:\pillow
33
init:
44
- ECHO %PYTHON%

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ def _read(file):
110110
_tkinter = None
111111

112112
NAME = 'Pillow'
113-
PILLOW_VERSION = '3.3.0'
113+
PILLOW_VERSION = '3.3.1'
114114
JPEG_ROOT = None
115115
JPEG2K_ROOT = None
116116
ZLIB_ROOT = None

0 commit comments

Comments
 (0)