Skip to content

Commit ddccf2f

Browse files
committed
Bump version to 0.7.0
1 parent 6c66084 commit ddccf2f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
author = 'SymEngine development team <[email protected]>'
2929

3030
# The full version, including alpha/beta/rc tags
31-
release = '0.6.1'
31+
release = symengine.__version__
3232

3333

3434
# -- General configuration ---------------------------------------------------

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ def finalize_options(self):
220220
'''
221221

222222
setup(name="symengine",
223-
version="0.6.1",
223+
version="0.7.0",
224224
description="Python library providing wrappers to SymEngine",
225225
setup_requires=['cython>=0.19.1'],
226226
long_description=long_description,

symengine/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def lambdify(args, exprs, **kwargs):
5555
return Lambdify(args, *exprs, **kwargs)
5656

5757

58-
__version__ = "0.6.1"
58+
__version__ = "0.7.0"
5959

6060

6161
# To not expose internals

0 commit comments

Comments
 (0)