diff --git a/.pkglts/pkg_cfg.json b/.pkglts/pkg_cfg.json index ac5f35627a2eac87c0b2d57123e731f8823c9ce5..bfeac7c26925f7c511198dd6dea09d069a3fbbbb 100644 --- a/.pkglts/pkg_cfg.json +++ b/.pkglts/pkg_cfg.json @@ -52,6 +52,6 @@ "version": { "major": 1, "minor": 0, - "post": 0 + "post": 1 } } diff --git a/README.rst b/README.rst index 28468d607c472184e786fd811389240797bd3a8b..2062c3879090acbd53408b3ba92d82bda6d11cab 100644 --- a/README.rst +++ b/README.rst @@ -120,15 +120,16 @@ If you are using Bvpy in a published work, please use this bibtex entry as refer .. code-block:: - @article{gacon_2020, + @article{gacon_2021, doi = {xxx}, url = {xxx}, - year = {2020}, + year = {2021}, publisher = {xxx}, volume = {x}, number = {xx}, pages = {xxxx}, author = {Florian Gacon and Christophe Godin and Olivier Ali}, - title = {BVPy: A Python package based on FEniCS and Gmsh for solving boundary value problems in cell and tissue mechanics.}, + title = {BVPy: A FEniCS-based Python package to ease the expression and study + of boundary value problems in Biology.}, journal = {Journal of Open Source Software} } diff --git a/doc/conf.py b/doc/conf.py index a517bf3256f8c46872c9c1ee9e7c9aea1b975d0c..32e2bdf9cb750718490debc73f8355254de6d813 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -157,9 +157,9 @@ copyright = u"2020, bvpy" # # The short X.Y version. -version = "1.0.0" +version = "1.0.1" # 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 diff --git a/setup.py b/setup.py index 763f53071c1adaba589203a160066dcd54b7ba5c..e7c15882eadea509ead39edb53438e3f8cef1997 100644 --- a/setup.py +++ b/setup.py @@ -12,10 +12,9 @@ history = open('HISTORY.rst').read() pkgs = find_packages('src') - setup_kwds = dict( name='bvpy', - version="1.0.0", + version="1.0.1", description=short_descr, long_description=readme + '\n\n' + history, author="Florian Gacon",