summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPJ Eby <distutils-sig@python.org>2005-07-16 16:17:29 +0000
committerPJ Eby <distutils-sig@python.org>2005-07-16 16:17:29 +0000
commit2b761a26e530877facb940fb692938d0bd35131c (patch)
tree9924c6007c8716322bae5e3e5a1048af1c78a631
parent92b222587272770a5c0a3fe5f0c64f40dc10ef17 (diff)
downloadpython-setuptools-git-2b761a26e530877facb940fb692938d0bd35131c.tar.gz
prep for 0.5a13 release
--HG-- branch : setuptools extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041128
-rwxr-xr-xEasyInstall.txt2
-rwxr-xr-xez_setup.py2
-rwxr-xr-xsetup.py2
-rwxr-xr-xsetuptools.txt3
-rw-r--r--setuptools/__init__.py2
5 files changed, 7 insertions, 4 deletions
diff --git a/EasyInstall.txt b/EasyInstall.txt
index 06173289..49bd4379 100755
--- a/EasyInstall.txt
+++ b/EasyInstall.txt
@@ -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
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,
automatically building and installing it::
diff --git a/ez_setup.py b/ez_setup.py
index 9d2bc251..bc78d5e4 100755
--- a/ez_setup.py
+++ b/ez_setup.py
@@ -14,7 +14,7 @@ the appropriate options to ``use_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/"
import sys, os
diff --git a/setup.py b/setup.py
index 1f7205a4..4ca9ad6a 100755
--- a/setup.py
+++ b/setup.py
@@ -15,7 +15,7 @@ def get_description():
f.close()
return ''.join(lines)
-VERSION = "0.5a12"
+VERSION = "0.5a13"
from setuptools import setup, find_packages
diff --git a/setuptools.txt b/setuptools.txt
index 12d52179..8e364bf6 100755
--- a/setuptools.txt
+++ b/setuptools.txt
@@ -1332,6 +1332,9 @@ XXX
Release Notes/Change History
----------------------------
+0.5a13
+ * Fixed a bug in resource extraction from nested packages in a zipped egg.
+
0.5a12
* 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
diff --git a/setuptools/__init__.py b/setuptools/__init__.py
index 6b81f69f..36c1e3d8 100644
--- a/setuptools/__init__.py
+++ b/setuptools/__init__.py
@@ -7,7 +7,7 @@ from distutils.core import Command as _Command
from distutils.util import convert_path
import os.path
-__version__ = '0.5a12'
+__version__ = '0.5a13'
__all__ = [
'setup', 'Distribution', 'Feature', 'Command', 'Extension', 'Require',
'find_packages'