From 62170caa106af2f94cbc055f1b9d2bc0f6a6b448 Mon Sep 17 00:00:00 2001 From: Cameron Hummels Date: Mon, 22 Aug 2022 11:56:21 -0700 Subject: [PATCH 1/4] Updating changelog. --- doc/source/changelog.rst | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/doc/source/changelog.rst b/doc/source/changelog.rst index 52f9acb87..fe604668c 100644 --- a/doc/source/changelog.rst +++ b/doc/source/changelog.rst @@ -3,7 +3,7 @@ Changelog ========= -This document summarizes changes to the codebase with time for Trident. +This document summarizes changes to the codebase from different releases. Contributors ------------ @@ -12,6 +12,26 @@ The `CREDITS file has an updated list of contributors to the codebase. +Version 1.3 (August 22, 2022) +------------------------------ + +This is a bug fix release and updates Trident to using yt-4, which has +a variety of improvements for Trident including full support for +particle-based datasets. See +`yt 4 `__. + +Bug Fixes +^^^^^^^^^ + +- Enables trident to work on Windows. + (`PR 136 `__) +- Fix API docs. + (`PR 160 `__) +- Update docs. + (`PR 175 `__) +- Fixes stable release of the code. + (`Issue 180 `__) + Version 1.2.3 (March 18, 2020) ------------------------------ From 90e6f3b0a288c3eab662e8d47a7da691a249f641 Mon Sep 17 00:00:00 2001 From: Cameron Hummels Date: Mon, 22 Aug 2022 11:56:48 -0700 Subject: [PATCH 2/4] Updating version in docs config. --- doc/source/conf.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/source/conf.py b/doc/source/conf.py index 4417d7282..87bc4779c 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -68,9 +68,9 @@ # built documents. # # The short X.Y version. -version = '1.3.dev1' +version = '1.3' # The full version, including alpha/beta/rc tags. -release = '1.3.dev1' +release = '1.3' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. From 9255f39da918883541758c6f61450a16e84509d5 Mon Sep 17 00:00:00 2001 From: Cameron Hummels Date: Mon, 22 Aug 2022 11:57:24 -0700 Subject: [PATCH 3/4] Removing support for python 3.6 --- setup.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/setup.py b/setup.py index a32e51fe4..3aac8c5d3 100644 --- a/setup.py +++ b/setup.py @@ -46,7 +46,6 @@ def get_version(filename): "License :: OSI Approved :: BSD License", "Natural Language :: English", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", @@ -66,5 +65,5 @@ def get_version(filename): 'scipy', 'yt>=4.0.1', 'yt_astro_analysis'], - python_requires='>=3.6' + python_requires='>=3.7' ) From 6e356a6d7b39ccc713e5384e04dc86e1892b487c Mon Sep 17 00:00:00 2001 From: Cameron Hummels Date: Mon, 22 Aug 2022 11:57:45 -0700 Subject: [PATCH 4/4] Updating version in code. --- trident/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trident/__init__.py b/trident/__init__.py index b192ab1e9..42d567a3c 100644 --- a/trident/__init__.py +++ b/trident/__init__.py @@ -15,7 +15,7 @@ # The full license is in the file LICENSE, distributed with this software. #----------------------------------------------------------------------------- -__version__ = "1.3.dev1" +__version__ = "1.3" # Must run import_check() before anything else is imported to avoid # astropy error when importing trident in trident package directory