summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--AUTHORS.txt1
-rw-r--r--docs/conf.py2
-rw-r--r--docs/news.txt5
-rw-r--r--setup.py2
-rwxr-xr-xvirtualenv.py4
5 files changed, 10 insertions, 4 deletions
diff --git a/AUTHORS.txt b/AUTHORS.txt
index 47dce6e..2adfef0 100644
--- a/AUTHORS.txt
+++ b/AUTHORS.txt
@@ -17,6 +17,7 @@ Alex Grönholm
Anatoly Techtonik
Antonio Cuni
Armin Ronacher
+Cap Petschulat
CBWhiz
Chris McDonough
Christian Stefanescu
diff --git a/docs/conf.py b/docs/conf.py
index ab5891c..fea1872 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -42,7 +42,7 @@ copyright = '2007-2012, Ian Bicking, The Open Planning Project, The virtualenv d
#
# The short X.Y version.
-release = "1.7.1.1"
+release = "1.7.1.2"
version = ".".join(release.split(".")[:2])
# There are two options for replacing |today|: either, you set today to some
diff --git a/docs/news.txt b/docs/news.txt
index ed6a01f..7eaaeef 100644
--- a/docs/news.txt
+++ b/docs/news.txt
@@ -1,6 +1,11 @@
Changes & News
--------------
+1.7.1.2 (2012-02-17)
+~~~~~~~~~~~~~~~~~~~~
+
+* Fixed minor issue in `--relocatable`. Thanks, Cap Petschulat.
+
1.7.1.1 (2012-02-16)
~~~~~~~~~~~~~~~~~~~~
diff --git a/setup.py b/setup.py
index a51fd63..146d61c 100644
--- a/setup.py
+++ b/setup.py
@@ -26,7 +26,7 @@ f.close()
setup(name='virtualenv',
# If you change the version here, change it in virtualenv.py and
# docs/conf.py as well
- version="1.7.1.1",
+ version="1.7.1.2",
description="Virtual Python Environment builder",
long_description=long_description,
classifiers=[
diff --git a/virtualenv.py b/virtualenv.py
index db03eea..9cff773 100755
--- a/virtualenv.py
+++ b/virtualenv.py
@@ -4,7 +4,7 @@
# If you change the version here, change it in setup.py
# and docs/conf.py as well.
-virtualenv_version = "1.7.1.1"
+virtualenv_version = "1.7.1.2"
import base64
import sys
@@ -1602,7 +1602,7 @@ def fixup_scripts(home_dir):
logger.notify('Making script %s relative' % filename)
lines = [new_shebang+'\n', activate+'\n'] + lines[1:]
f = open(filename, 'wb')
- f.write(lines.join('\n').encode('utf-8'))
+ f.write('\n'.join(lines).encode('utf-8'))
f.close()
def fixup_pth_and_egg_link(home_dir, sys_path=None):