diff --git a/docs/HISTORY.txt b/docs/HISTORY.txt index 2c7018e00..fb5f36916 100644 --- a/docs/HISTORY.txt +++ b/docs/HISTORY.txt @@ -2,10 +2,10 @@ Changelog ========= -1.2.1 (11/26/2010) ------------------- +1.3 (11/28/2010) +---------------- -- Add support for /lib64 library directory on Linux +- Add support for /lib64 and /usr/lib64 library directories on Linux 1.2 (08/02/2010) ---------------- diff --git a/setup.py b/setup.py index fc9bef4e7..d49053018 100644 --- a/setup.py +++ b/setup.py @@ -47,12 +47,12 @@ LCMS_ROOT = None # -------------------------------------------------------------------- # Identification -NAME = "Pillow" +NAME = "pillow" DESCRIPTION = "Python Imaging Library (fork)" #AUTHOR = "Secret Labs AB (PythonWare)", "info@pythonware.com" AUTHOR = "Alex Clark (fork author)", "aclark@aclark.net" #HOMEPAGE = "http://www.pythonware.com/products/pil" -HOMEPAGE = "http://github.com/collective.pillow" +HOMEPAGE = "http://github.com/collective/pillow" #DOWNLOAD_URL = "http://effbot.org/downloads/%s-%s.tar.gz" # name, version # -------------------------------------------------------------------- @@ -115,7 +115,7 @@ def find_version(filename): return None #VERSION = find_version("PIL/Image.py") -VERSION = "1.2.1" +VERSION = "1.3" class pil_build_ext(build_ext):