Skip to content

Commit

Permalink
REL: v0.12.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
rgommers committed Apr 6, 2013
1 parent 0996c8c commit cdd6b32
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 9 deletions.
7 changes: 3 additions & 4 deletions doc/release/0.12.0-notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
SciPy 0.12.0 Release Notes
==========================

.. note:: Scipy 0.12.0 is not released yet!

.. contents::

SciPy 0.12.0 is the culmination of 7 months of hard work. It contains
Expand Down Expand Up @@ -192,6 +190,8 @@ Authors
* Josh Lawrence
* Denis Laxalde
* Alex Leach +
* Tim Leslie
* Richard Lindsley +
* Lorenzo Luengo +
* Stephen McQuay +
* MinRK
Expand All @@ -206,7 +206,6 @@ Authors
* Josef Perktold
* Zach Ploskey +
* Alex Reinhart +
* Richard Lindsley +
* Gilles Rochefort +
* Ciro Duran Santillli +
* Jan Schlueter +
Expand All @@ -229,6 +228,6 @@ Authors
* Stefan van der Walt
* Warren Weckesser

A total of 74 people contributed to this release.
A total of 75 people contributed to this release.
People with a "+" by their names contributed a patch for the first time.

2 changes: 1 addition & 1 deletion pavement.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@

# Start/end of the log (from git)
LOG_START = 'v0.11.0'
LOG_END = 'v0.12.0rc1'
LOG_END = 'v0.12.0'


#-------------------------------------------------------
Expand Down
2 changes: 0 additions & 2 deletions release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ paver dmg -p 2.7 # 32/64-bit version

paver bdist_superpack -p 2.7
paver bdist_superpack -p 2.6
paver bdist_superpack -p 2.5
paver bdist_superpack -p 3.1
paver bdist_superpack -p 3.2

Expand All @@ -54,7 +53,6 @@ paver bdist_superpack -p 3.2
#paver dmg -p 2.6
#paver dmg -p 2.7 # 32-bit version
#export CC=/usr/bin/gcc-4.0 # necessary on 10.6, not sure about 10.5
#paver dmg -p 2.5


paver write_release_and_log
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@
MAJOR = 0
MINOR = 12
MICRO = 0
ISRELEASED = False
VERSION = '%d.%d.%rc2' % (MAJOR, MINOR, MICRO)
ISRELEASED = True
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)


# Return the git revision as a string
Expand Down

0 comments on commit cdd6b32

Please sign in to comment.