Skip to content

Commit

Permalink
Bump version to 1.0.1 for Zenodo release.
Browse files Browse the repository at this point in the history
  • Loading branch information
ketch committed Nov 16, 2020
1 parent 8d295af commit 27070f4
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
# The short X.Y version.
version = '1.0'
# The full version, including alpha/beta/rc tags.
release = '1.0.0'
release = '1.0.1'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion nodepy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"""

from __future__ import absolute_import
__version__="1.0.0"
__version__="1.0.1"

import nodepy.runge_kutta_method as rk
import nodepy.twostep_runge_kutta_method as tsrk
Expand Down
4 changes: 2 additions & 2 deletions nodepy/runge_kutta_method.py
Original file line number Diff line number Diff line change
Expand Up @@ -3716,10 +3716,10 @@ def extrap(k,base='euler',seq='harmonic',embedded=False, shuosher=False):
""" Construct extrapolation methods as Runge-Kutta methods.
**Input**: k -- number of grid points & number of extrapolation iterations
base -- the base method to be used ('euler' or 'midpoint')
base -- the base method to be used ('euler', 'midpoint', or 'implicit euler')
seq -- extrapolation sequence
**Output**: A ExplicitRungeKuttaMethod
**Output**: A ExplicitRungeKuttaMethod (or RungeKuttaMethod if base=='implicit euler')
**Examples**::
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
from distutils.core import setup

setup(name='nodepy',
version='1.0.0',
version='1.0.1',
packages=['nodepy'],
author=['David Ketcheson'],
author_email='dketch@gmail.com',
url='http://numerics.kaust.edu.sa/nodepy/',
url='https://github.com/ketch/nodepy',
description='Numerical ODE solvers in Python',
license='modified BSD',
install_requires=['numpy','sympy','matplotlib'],
Expand Down

0 comments on commit 27070f4

Please sign in to comment.