Skip to content

Commit

Permalink
update docs for 0.6.0 release (#641)
Browse files Browse the repository at this point in the history
* update docs for 0.6.0 release

* add link to dec 20 ecp tutorial
  • Loading branch information
cyrush committed Nov 7, 2020
1 parent 9cea721 commit 9ade37b
Show file tree
Hide file tree
Showing 6 changed files with 42 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Notable changes to Ascent are documented in this file. This changelog started on
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project aspires to adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased
## [0.6.0] - Released 2020-11-06

### Added
- Added support for Devil Ray (high-order) ray tracer
Expand Down
2 changes: 1 addition & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ cmake_policy(SET CMP0048 NEW)
# Ascent
################################

project(ascent VERSION "0.5.1")
project(ascent VERSION "0.6.0")

################################
# Build Options
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1006,7 +1006,7 @@ void mesh_blueprint_save(const Node &data,
}

root["protocol/name"] = file_protocol;
root["protocol/version"] = "0.5.1";
root["protocol/version"] = "0.6.0";

root["number_of_files"] = num_files;
root["number_of_trees"] = global_num_domains;
Expand Down
35 changes: 35 additions & 0 deletions src/docs/sphinx/Releases.rst
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,41 @@ Source distributions for Ascent are hosted on github:
https://github.com/Alpine-DAV/ascent/releases


v0.6.0
-------

* `Source Tarball <https://github.com/Alpine-DAV/ascent/releases/download/v0.6.0/ascent-v0.6.0-src-with-blt.tar.gz>`_

Highlights
+++++++++++++

(Extracted from Ascent's :download:`Changelog <../../../CHANGELOG.md>`)

Added
~~~~~~~~~

* Added support for Devil Ray (high-order) ray tracer
* Added vector operations
* composite vector (create vector from three scalars)
* vector component (extract scalar component)
* Allow no refinement for high-order meshes
* Added support for multiple topologies (e.g., volume and particles in the same mesh)
* Added support for AMR Nesting relationships (Blueprint Nestsets)
* Added optional ``num_files`` parameter to the Relay Extract. See the [Relay Extract Docs](https://ascent.readthedocs.io/en/latest/Actions/Extracts.html#relay) for more details.
* Added an AscentViewer Widget for Jupyter
* Added new CUDA device link logic to help bottle CUDA dependencies for downstream use
* Added support for `exa` prefix style filters


Changed
~~~~~~~~~
* Modified Cinema output so it can be viewed without a webserver
* Removed default behavior of publishing individual vector components when vectors were three separate arrays. This can be achieved by using the vector component filter
* Changed Docker Images to leverage Jupyter lab
* Tutorial updates
* Rendering improvements


v0.5.1
-------

Expand Down
2 changes: 2 additions & 0 deletions src/docs/sphinx/Tutorial.rst
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,8 @@ You can find the tutorial source code and notebooks in your Ascent install direc
`Ascent Tutorial Intro Slides [pdf] <https://www.ascent-dav.org/sc/2020_11_09_SC20_ascent_intro.pdf>`_

Scheduled Tutorials:
* `In Situ Scientific Analysis and Visualization using ALPINE Ascent @ ECP Training Event <https://www.exascaleproject.org/event/ascent-201217/>`_ - Dec 2020, Virtual

* `In Situ Analysis and Visualization with SENSEI and Ascent @ SC20 <https://sc20.supercomputing.org/presentation/?id=tut111&sess=sess257>`_ - Nov 2020, Virtual


Expand Down
4 changes: 2 additions & 2 deletions src/docs/sphinx/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,9 +101,9 @@
# built documents.
#
# The short X.Y version.
version = '0.5.1'
version = '0.6.0'
# The full version, including alpha/beta/rc tags.
release = '0.5.1'
release = '0.6.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down

0 comments on commit 9ade37b

Please sign in to comment.