[pypy-commit] cffi default: Fix the next version number (not for immediate release!)

arigo pypy.commits at gmail.com
Sat May 7 03:21:57 EDT 2016


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r2687:ab0396f739ff
Date: 2016-05-07 09:22 +0200
http://bitbucket.org/cffi/cffi/changeset/ab0396f739ff/

Log:	Fix the next version number (not for immediate release!)

diff --git a/doc/source/ref.rst b/doc/source/ref.rst
--- a/doc/source/ref.rst
+++ b/doc/source/ref.rst
@@ -321,7 +321,7 @@
 **ffi.gc(ptr, None)**: removes the ownership on a object returned by a
 regular call to ``ffi.gc``, and no destructor will be called when it
 is garbage-collected.  The object is modified in-place, and the
-function returns ``None``.
+function returns ``None``.  *New in version 1.7: ffi.gc(ptr, None)*
 
 Note that this should be avoided for large memory allocations or
 for limited resources.  This is particularly true on PyPy: its GC does
diff --git a/doc/source/whatsnew.rst b/doc/source/whatsnew.rst
--- a/doc/source/whatsnew.rst
+++ b/doc/source/whatsnew.rst
@@ -3,8 +3,10 @@
 ======================
 
 
-v1.next
-=======
+v1.7
+====
+
+(NOT RELEASED YET)
 
 * ``ffi.gc(p, None)`` removes the destructor on an object previously
   created by another call to ``ffi.gc()``


More information about the pypy-commit mailing list