From d8d30d78cf1647ae7aad74815d2cda6e975dd448 2011-12-19 09:30:12
From: Fernando Perez <Fernando.Perez@berkeley.edu>
Date: 2011-12-19 09:30:12
Subject: [PATCH] Open 0.13 series for development.

---

diff --git a/IPython/core/release.py b/IPython/core/release.py
index b9018da..10b7e0c 100644
--- a/IPython/core/release.py
+++ b/IPython/core/release.py
@@ -20,10 +20,11 @@ name = 'ipython'
 # release.  'dev' as a _version_extra string means this is a development
 # version
 _version_major = 0
-_version_minor = 12
+_version_minor = 13
 _version_micro = ''  # use '' for first of series, number for 1 and above
+_version_extra = 'dev'
 #_version_extra = 'rc1'
-_version_extra = ''  # Uncomment this for full releases
+#_version_extra = ''  # Uncomment this for full releases
 
 # Construct full version string from these.
 _ver = [_version_major, _version_minor]
diff --git a/docs/gh-pages.py b/docs/gh-pages.py
index 577341d..de50269 100755
--- a/docs/gh-pages.py
+++ b/docs/gh-pages.py
@@ -104,14 +104,16 @@ if __name__ == '__main__':
     # sh('make html')
     if tag != 'dev':
         # only build pdf for non-dev targets
-        sh2('make pdf')
+        #sh2('make pdf')
+        pass
 
     # This is pretty unforgiving: we unconditionally nuke the destination
     # directory, and then copy the html tree in there
     shutil.rmtree(dest, ignore_errors=True)
     shutil.copytree(html_dir, dest)
     if tag != 'dev':
-        shutil.copy(pjoin(pdf_dir, 'ipython.pdf'), pjoin(dest, 'ipython.pdf'))
+        #shutil.copy(pjoin(pdf_dir, 'ipython.pdf'), pjoin(dest, 'ipython.pdf'))
+        pass
 
     try:
         cd(pages_dir)
diff --git a/docs/source/whatsnew/index.txt b/docs/source/whatsnew/index.txt
index c837e8f..0a8634a 100644
--- a/docs/source/whatsnew/index.txt
+++ b/docs/source/whatsnew/index.txt
@@ -20,6 +20,7 @@ development work they do here in a user friendly format.
 .. toctree::
    :maxdepth: 1
 
+   development
    version0.12
    github-stats-0.12
    version0.11