diff --git a/doc/api/conf.py b/doc/api/conf.py index 34915ed725b7..df20fdad240c 100644 --- a/doc/api/conf.py +++ b/doc/api/conf.py @@ -42,7 +42,7 @@ # The short X.Y version. version = '0.7.0' # The full version, including alpha/beta/rc tags. -release = '0.7.0.rc2' +release = '0.7.0' # There are two options for replacing |today|: either, you set today to some # non-false value, then it is used: diff --git a/doc/src/conf.py b/doc/src/conf.py index 027bda03ae05..bb7b672727bb 100644 --- a/doc/src/conf.py +++ b/doc/src/conf.py @@ -42,7 +42,7 @@ # The short X.Y version. version = '0.7.0' # The full version, including alpha/beta/rc tags. -release = '0.7.0.rc2' +release = '0.7.0' # There are two options for replacing |today|: either, you set today to some # non-false value, then it is used: diff --git a/doc/src/tutorial.txt b/doc/src/tutorial.txt index 19d7762535be..837669f49d37 100644 --- a/doc/src/tutorial.txt +++ b/doc/src/tutorial.txt @@ -96,7 +96,7 @@ defined the symbols x, y, z and some other things: $ :input:`cd sympy` $ :input:`./bin/isympy` -IPython console for SymPy 0.7.0.rc2 (Python 2.7.1) (ground types: gmpy) +IPython console for SymPy 0.7.0 (Python 2.7.1) (ground types: gmpy) These commands were executed: >>> from __future__ import division diff --git a/sympy/__init__.py b/sympy/__init__.py index eb2e8052167b..582e9b0435ae 100644 --- a/sympy/__init__.py +++ b/sympy/__init__.py @@ -9,7 +9,7 @@ http://code.google.com/p/sympy/""" -__version__ = "0.7.0.rc2" +__version__ = "0.7.0" import sys import warnings diff --git a/sympy/utilities/tests/test_codegen.py b/sympy/utilities/tests/test_codegen.py index 619ae8adbb83..cff533b0d678 100644 --- a/sympy/utilities/tests/test_codegen.py +++ b/sympy/utilities/tests/test_codegen.py @@ -57,7 +57,7 @@ def test_empty_c_code_with_comment(): assert source[:82] == ( "/******************************************************************************\n *" ) - # " Code generated with sympy 0.7.0-rc2 " + # " Code generated with sympy 0.7.0 " assert source[158:] == ( "*\n" " * *\n" " * See http://www.sympy.org/ for more information. *\n" @@ -440,7 +440,7 @@ def test_empty_f_code_with_header(): assert source[:82] == ( "!******************************************************************************\n!*" ) - # " Code generated with sympy 0.7.0.rc2 " + # " Code generated with sympy 0.7.0 " assert source[158:] == ( "*\n" "!* *\n" "!* See http://www.sympy.org/ for more information. *\n"