[pypy-svn] r64301 - in pypy/trunk/pypy: doc module/sys

arigo at codespeak.net arigo at codespeak.net
Fri Apr 17 19:16:20 CEST 2009


Author: arigo
Date: Fri Apr 17 19:16:19 2009
New Revision: 64301

Modified:
   pypy/trunk/pypy/doc/getting-started-python.txt
   pypy/trunk/pypy/doc/translation.txt
   pypy/trunk/pypy/module/sys/version.py
Log:
Switch the version number from 1.0 to 1.1.


Modified: pypy/trunk/pypy/doc/getting-started-python.txt
==============================================================================
--- pypy/trunk/pypy/doc/getting-started-python.txt	(original)
+++ pypy/trunk/pypy/doc/getting-started-python.txt	Fri Apr 17 19:16:19 2009
@@ -76,7 +76,7 @@
 
     $ ./pypy-c
     Python 2.5.2 (64177, Apr 16 2009, 16:33:13)
-    [PyPy 1.0.0] on linux2
+    [PyPy 1.1.0] on linux2
     Type "help", "copyright", "credits" or "license" for more information.
     And now for something completely different: ``this sentence is false''
     >>>> 46 - 4
@@ -177,7 +177,7 @@
 
     $ ./pypy-cli
     Python 2.5.2 (64219, Apr 17 2009, 13:54:38)
-    [PyPy 1.0.0] on linux2
+    [PyPy 1.1.0] on linux2
     Type "help", "copyright", "credits" or "license" for more information.
     And now for something completely different: ``distopian and utopian chairs''
     >>>> 
@@ -212,7 +212,7 @@
 
     $ ./pypy-jvm 
     Python 2.5.2 (64214, Apr 17 2009, 08:11:23)
-    [PyPy 1.0.0] on darwin
+    [PyPy 1.1.0] on darwin
     Type "help", "copyright", "credits" or "license" for more information.
     And now for something completely different: ``# assert did not crash''
     >>>> 
@@ -240,11 +240,11 @@
 ``PREFIX/pypy/lib`` can all be found.  The prefixes that are tried are::
 
     .
-    ./share/pypy-1.0
+    ./share/pypy-1.1
     ..
-    ../share/pypy-1.0
+    ../share/pypy-1.1
     ../..
-    ../../share/pypy-1.0
+    ../../share/pypy-1.1
     ../../..
     etc.
 

Modified: pypy/trunk/pypy/doc/translation.txt
==============================================================================
--- pypy/trunk/pypy/doc/translation.txt	(original)
+++ pypy/trunk/pypy/doc/translation.txt	Fri Apr 17 19:16:19 2009
@@ -27,7 +27,7 @@
 this task into several steps, and the purpose of this document is to
 introduce them.
 
-As of the 1.0 release, RPython_ programs can be translated into the following
+As of the 1.1 release, RPython_ programs can be translated into the following
 languages/platforms: C/POSIX, CLI/.NET
 and Java/JVM (in addition, there's `a backend`_ that translates
 `application-level`_ into `interpreter-level`_ code, but this is a special

Modified: pypy/trunk/pypy/module/sys/version.py
==============================================================================
--- pypy/trunk/pypy/module/sys/version.py	(original)
+++ pypy/trunk/pypy/module/sys/version.py	Fri Apr 17 19:16:19 2009
@@ -4,10 +4,10 @@
 import os
 
 
-CPYTHON_VERSION            = (2, 5, 2, "alpha", 42)
+CPYTHON_VERSION            = (2, 5, 2, "beta", 42)
 CPYTHON_API_VERSION        = 1012
 
-PYPY_VERSION               = (1, 0, 0, "alpha", '?')
+PYPY_VERSION               = (1, 1, 0, "beta", '?')
 # the last item is replaced by the svn revision ^^^
 
 TRIM_URL_UP_TO = 'svn/pypy/'



More information about the Pypy-commit mailing list