[pypy-commit] pypy.org extradoc: bump the release number here

fijal noreply at buildbot.pypy.org
Thu Aug 18 19:10:42 CEST 2011


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: extradoc
Changeset: r232:c18166abfb50
Date: 2011-08-18 19:14 +0200
http://bitbucket.org/pypy/pypy.org/changeset/c18166abfb50/

Log:	bump the release number here

diff --git a/js/detect.js b/js/detect.js
--- a/js/detect.js
+++ b/js/detect.js
@@ -4,17 +4,17 @@
     var base = 'http://bitbucket.org/pypy/pypy/downloads/';
     if (navigator.platform.indexOf('Linux') != -1) {
         if (navigator.platform.indexOf('64') != -1) {
-            download_url = base + 'pypy-1.5-linux64.tar.bz2';
+            download_url = base + 'pypy-1.6-linux64.tar.bz2';
             download_text = 'Download linux x86-64 bin';
         } else {
-            download_url = base + 'pypy-1.5-linux.tar.bz2';
+            download_url = base + 'pypy-1.6-linux.tar.bz2';
             download_text = 'Download linux x86 bin (32 bit)';
         }
     } else if (navigator.platform.indexOf('Win') != -1) {
-        download_url = base + 'pypy-1.5-win32.zip';
+        download_url = base + 'pypy-1.6-win32.zip';
         download_text = 'Download Windows x86 bin';
     } else if (navigator.platform.indexOf('Mac') != 1) {
-        download_url = base + 'pypy-1.5-osx64.tar.bz2';
+        download_url = base + 'pypy-1.6-osx64.tar.bz2';
         download_text = 'Download Mac OS X 10.6 bin (64 bit)';
     } else {
         download_url = "download.html";
diff --git a/source/compat.txt b/source/compat.txt
--- a/source/compat.txt
+++ b/source/compat.txt
@@ -8,7 +8,7 @@
 already accepted in the main python in newer versions). It supports most
 of the commonly used Python `standard library modules`_; details below.
 
-PyPy has **alpha/beta-level** support for the `CPython C API`_, however, as of 1.5
+PyPy has **alpha/beta-level** support for the `CPython C API`_, however, as of 1.6
 release this feature is not yet complete. Many libraries will require
 a bit of effort to work, but there are known success stories. Check out
 PyPy blog for updates.
diff --git a/source/download.txt b/source/download.txt
--- a/source/download.txt
+++ b/source/download.txt
@@ -12,8 +12,8 @@
   as stable as the release, but they contain numerous bugfixes and 
   performance improvements.
 
-Here are the various binaries of **PyPy 1.5** that we provide for x86 Linux,
-Mac OS/X or Windows.
+Here are the various binaries of **PyPy 1.6** that we provide for x86 Linux,
+Mac OS/X or Windows (**Note**: windows binaries are not ready yet).
 
 .. class:: download_menu
 
@@ -34,18 +34,18 @@
 These binaries include a Just-in-Time compiler.  They only work on
 x86 CPUs that have the SSE2_ instruction set (most of
 them do, nowadays), or on x86-64 CPUs.
-(This is the official release 1.5;
+(This is the official release 1.6;
 for the most up-to-date version see below.)
 
 * `Linux binary (32bit)`__
 * `Linux binary (64bit)`__
 * `Mac OS/X binary (64bit)`__
-* `Windows binary (32bit)`__ (BETA!) (you may need to install the `VS 2010 runtime libraries`_)
+* Windows binary (32bit) (BETA!) (you may need to install the `VS 2010 runtime libraries`_), not available yet
 
-.. __: https://bitbucket.org/pypy/pypy/downloads/pypy-1.5-linux.tar.bz2
-.. __: https://bitbucket.org/pypy/pypy/downloads/pypy-1.5-linux64.tar.bz2
-.. __: https://bitbucket.org/pypy/pypy/downloads/pypy-1.5-osx64.tar.bz2
-.. __: https://bitbucket.org/pypy/pypy/downloads/pypy-1.5-win32.zip
+.. __: https://bitbucket.org/pypy/pypy/downloads/pypy-1.6-linux.tar.bz2
+.. __: https://bitbucket.org/pypy/pypy/downloads/pypy-1.6-linux64.tar.bz2
+.. __: https://bitbucket.org/pypy/pypy/downloads/pypy-1.6-osx64.tar.bz2
+.. __: https://bitbucket.org/pypy/pypy/downloads/pypy-1.6-win32.zip
 .. _`VS 2010 runtime libraries`: http://www.microsoft.com/downloads/en/details.aspx?familyid=A7B7A05E-6DE6-4D3A-A423-37BF0912DB84
 
 If your CPU is really old, it may not have SSE2.  In this case, you need
@@ -73,7 +73,7 @@
   complicated, this reduces a bit the level of confidence we can put in
   the result.)
 
-These versions are not officially part of the release 1.5, which focuses
+These versions are not officially part of the release 1.6, which focuses
 on the JIT.  You can find prebuilt binaries for them on our
 `nightly build`_, or translate_ them yourself.
 
@@ -87,7 +87,7 @@
 uncompressed, they run in-place.  For now you can uncompress them
 either somewhere in your home directory or, say, in ``/opt``, and
 if you want, put a symlink from somewhere like
-``/usr/local/bin/pypy`` to ``/path/to/pypy-1.5/bin/pypy``.  Do
+``/usr/local/bin/pypy`` to ``/path/to/pypy-1.6/bin/pypy``.  Do
 not move or copy the executable ``pypy`` outside the tree --- put
 a symlink to it, otherwise it will not find its libraries.
 
@@ -100,10 +100,10 @@
 1. Get the source code.  The following packages contain the source at
    the same revision as the above binaries:
 
-   * `pypy-1.5-src.tar.bz2`__ (sources, Unix line endings)
-   * pypy-1.5-src.zip (sources, Windows line endings) not available
+   * `pypy-1.6-src.tar.bz2`__ (sources, Unix line endings)
+   * pypy-1.6-src.zip (sources, Windows line endings) not available
 
-   .. __: https://bitbucket.org/pypy/pypy/downloads/pypy-1.5-src.tar.bz2
+   .. __: https://bitbucket.org/pypy/pypy/downloads/pypy-1.6-src.tar.bz2
 
    Or you can checkout the current trunk using Mercurial_ (the trunk
    usually works and is of course more up-to-date)::
@@ -169,6 +169,8 @@
 
 Here are the checksums for each of the downloads (md5 and sha1)::
 
+XXX
+
   08a2c95163c95f91772abb8bf5f8b9cb  pypy-1.5-linux.tar.bz2
   32392b7986eb34cd657d5b6c5d242cc7  pypy-1.5-linux64.tar.bz2
   b1417916bc01ebb9f95c666f5e397fb5  pypy-1.5-osx64.tar.bz2
diff --git a/source/features.txt b/source/features.txt
--- a/source/features.txt
+++ b/source/features.txt
@@ -6,7 +6,7 @@
 PyPy features
 ===========================================================
 
-**PyPy 1.5** implements **Python 2.7.1** and runs on Intel
+**PyPy 1.6** implements **Python 2.7.1** and runs on Intel
 `x86 (IA-32)`_ and `x86_64`_ platforms, with ARM being underway.
 It supports all of the core language, passing the Python test suite
 (with minor modifications that were already accepted in the main python
diff --git a/source/index.txt b/source/index.txt
--- a/source/index.txt
+++ b/source/index.txt
@@ -26,7 +26,7 @@
 
 .. class:: download
 
-`Download and try out the PyPy release 1.5!`__
+`Download and try out the PyPy release 1.6!`__
 
 .. __: download.html
 


More information about the pypy-commit mailing list