diff --git a/doc/Makefile b/doc/Makefile index a9d3b03..8aa9704 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -19,7 +19,8 @@ I18NSPHINXOPTS = $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) . help: @echo "Please use \`make ' where is one of" @echo " commandline to generate command line help text" - @echo " graphs to generate nipype workflow graphs" + @echo " graphs to generate nipype workflow graphs" + @echo " traits to generate parameter documentation" @echo " html to make standalone HTML files" @echo " dirhtml to make HTML files named index.html in directories" @echo " singlehtml to make a single large HTML file" diff --git a/doc/releases.rst b/doc/releases.rst index c380ee3..d4dc3b6 100644 --- a/doc/releases.rst +++ b/doc/releases.rst @@ -3,8 +3,8 @@ Release notes ============= -v2.0.0 (Unreleased) -------------------- +v2.0.0 (April 9, 2020) +---------------------- Lyman version 2 comprises a set major change to the library (and an essentially complete rewrite of the codebase). Major aspects of the changes are summarized here; more details are available throughout the collection of related `pull requests `_. diff --git a/lyman/__init__.py b/lyman/__init__.py index 0403abe..38900c0 100644 --- a/lyman/__init__.py +++ b/lyman/__init__.py @@ -6,5 +6,5 @@ from . import workflows # noqa: F401 from . import visualizations # noqa: F401 -version = "2.0.0.dev" +version = "2.0.0" __version__ = version diff --git a/setup.py b/setup.py index 115fbad..aa1e78f 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ LICENSE = 'BSD (3-clause)' URL = 'http://www.cns.nyu.edu/~mwaskom/software/lyman/' DOWNLOAD_URL = 'https://github.com/mwaskom/lyman' -VERSION = '2.0.0.dev' +VERSION = '2.0.0' PYTHON_REQUIRES = ">=3.7" INSTALL_REQUIRES = [ 'numpy',