Skip to content

Commit

Permalink
Merge pull request #189 from chummels/release-1.3
Browse files Browse the repository at this point in the history
Update version and changelog for v1.3 release.
  • Loading branch information
chummels committed Aug 22, 2022
2 parents 0b06259 + 6e356a6 commit 57340a0
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 6 deletions.
22 changes: 21 additions & 1 deletion doc/source/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
------------
Expand All @@ -12,6 +12,26 @@ The `CREDITS file <https://github.com/trident-project/trident/blob/main/CREDITS>
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 <https://yt-project.org/docs/dev/yt4differences.html>`__.

Bug Fixes
^^^^^^^^^

- Enables trident to work on Windows.
(`PR 136 <https://github.com/trident-project/trident/pull/136>`__)
- Fix API docs.
(`PR 160 <https://github.com/trident-project/trident/pull/160>`__)
- Update docs.
(`PR 175 <https://github.com/trident-project/trident/pull/175>`__)
- Fixes stable release of the code.
(`Issue 180 <https://github.com/trident-project/trident/issues/180>`__)

Version 1.2.3 (March 18, 2020)
------------------------------

Expand Down
4 changes: 2 additions & 2 deletions doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -66,5 +65,5 @@ def get_version(filename):
'scipy',
'yt>=4.0.1',
'yt_astro_analysis'],
python_requires='>=3.6'
python_requires='>=3.7'
)
2 changes: 1 addition & 1 deletion trident/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 57340a0

Please sign in to comment.