Commit 2b761a26 authored by PJ Eby's avatar PJ Eby

prep for 0.5a13 release

--HG--
branch : setuptools
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041128
parent 92b22258
...@@ -67,7 +67,7 @@ version, and automatically downloading, building, and installing it:: ...@@ -67,7 +67,7 @@ version, and automatically downloading, building, and installing it::
**Example 2**. Install or upgrade a package by name and version by finding **Example 2**. Install or upgrade a package by name and version by finding
links on a given "download page":: links on a given "download page"::
easy_install -f http://peak.telecommunity.com/dist "setuptools>=0.5a12" easy_install -f http://peak.telecommunity.com/dist "setuptools>=0.5a13"
**Example 3**. Download a source distribution from a specified URL, **Example 3**. Download a source distribution from a specified URL,
automatically building and installing it:: automatically building and installing it::
......
...@@ -14,7 +14,7 @@ the appropriate options to ``use_setuptools()``. ...@@ -14,7 +14,7 @@ the appropriate options to ``use_setuptools()``.
This file can also be run as a script to install or upgrade setuptools. This file can also be run as a script to install or upgrade setuptools.
""" """
DEFAULT_VERSION = "0.5a12" DEFAULT_VERSION = "0.5a13"
DEFAULT_URL = "http://www.python.org/packages/source/s/setuptools/" DEFAULT_URL = "http://www.python.org/packages/source/s/setuptools/"
import sys, os import sys, os
......
...@@ -15,7 +15,7 @@ def get_description(): ...@@ -15,7 +15,7 @@ def get_description():
f.close() f.close()
return ''.join(lines) return ''.join(lines)
VERSION = "0.5a12" VERSION = "0.5a13"
from setuptools import setup, find_packages from setuptools import setup, find_packages
......
...@@ -1332,6 +1332,9 @@ XXX ...@@ -1332,6 +1332,9 @@ XXX
Release Notes/Change History Release Notes/Change History
---------------------------- ----------------------------
0.5a13
* Fixed a bug in resource extraction from nested packages in a zipped egg.
0.5a12 0.5a12
* The zip-safety scanner now checks for modules that might be used with * The zip-safety scanner now checks for modules that might be used with
``python -m``, and marks them as unsafe for zipping, since Python 2.4 can't ``python -m``, and marks them as unsafe for zipping, since Python 2.4 can't
......
...@@ -7,7 +7,7 @@ from distutils.core import Command as _Command ...@@ -7,7 +7,7 @@ from distutils.core import Command as _Command
from distutils.util import convert_path from distutils.util import convert_path
import os.path import os.path
__version__ = '0.5a12' __version__ = '0.5a13'
__all__ = [ __all__ = [
'setup', 'Distribution', 'Feature', 'Command', 'Extension', 'Require', 'setup', 'Distribution', 'Feature', 'Command', 'Extension', 'Require',
'find_packages' 'find_packages'
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment