From 09c8a6dadb54fe66c083f7e5edff7fef7f972867 Mon Sep 17 00:00:00 2001 From: Britton Smith Date: Tue, 17 Dec 2019 11:00:00 +0000 Subject: [PATCH 1/2] Update changelog and version for 2.3 release. --- doc/source/changelog.rst | 25 ++++++++++++++++++++++++- doc/source/conf.py | 4 ++-- ytree/__init__.py | 2 +- 3 files changed, 27 insertions(+), 4 deletions(-) diff --git a/doc/source/changelog.rst b/doc/source/changelog.rst index 5682a226..9dd569bc 100644 --- a/doc/source/changelog.rst +++ b/doc/source/changelog.rst @@ -13,10 +13,33 @@ The `CREDITS file contains the most up-to-date list of everyone who has contributed to the ``ytree`` source code. +Version 2.3 +----------- + +Release date: *December 17, 2019* + +This release marks the `acceptance of the ytree paper +`__ in +`JOSS `__. + +New Features +^^^^^^^^^^^^ + + * Add TreePlot for plotting and examples docs + (`PR #39 `__) + +Enhancements +^^^^^^^^^^^^ + + * Add time field + (`PR #25 `__) + * Move treefarm module to separate package + (`PR #28 `__) + Version 2.2.1 ------------- -Release data: *October 24, 2018* +Release date: *October 24, 2018* Enhancements ^^^^^^^^^^^^ diff --git a/doc/source/conf.py b/doc/source/conf.py index cf3cc207..f78866c1 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -62,9 +62,9 @@ # built documents. # # The short X.Y version. -version = u'2.3.dev2' +version = u'2.3' # The full version, including alpha/beta/rc tags. -release = u'2.3.dev2' +release = u'2.3' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/ytree/__init__.py b/ytree/__init__.py index f16fd95f..9cab7a04 100644 --- a/ytree/__init__.py +++ b/ytree/__init__.py @@ -21,4 +21,4 @@ from ytree.visualization.tree_plot import \ TreePlot -__version__ = '2.3.dev2' +__version__ = '2.3' From c341026e470c86006e3acdef2affebaeec429908 Mon Sep 17 00:00:00 2001 From: Britton Smith Date: Tue, 17 Dec 2019 11:04:25 +0000 Subject: [PATCH 2/2] Add note about dropping python 2 support after release. --- doc/source/changelog.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/doc/source/changelog.rst b/doc/source/changelog.rst index 9dd569bc..0de47333 100644 --- a/doc/source/changelog.rst +++ b/doc/source/changelog.rst @@ -22,6 +22,8 @@ This release marks the `acceptance of the ytree paper `__ in `JOSS `__. +This is the last release to support Python 2. + New Features ^^^^^^^^^^^^