Skip to content

Commit

Permalink
updated release notes for 0.5.1 (#452)
Browse files Browse the repository at this point in the history
  • Loading branch information
cyrush authored Feb 1, 2020
1 parent c4ed6b6 commit 51f5b32
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 6 deletions.
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@ 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.5.1] - Released 2020-01-31

### Added
- Added support to render multiple topologies in the same scene.
- Added a Data Object construct to the main Ascent runtime to easily manage transformations between in-memory mesh representations.

### Fixed
- Issue where cycle was not properly propagated when converting mfem data.
Expand Down Expand Up @@ -35,7 +39,8 @@ and this project aspires to adhere to [Semantic Versioning](https://semver.org/s
### Fixed
- Several minor bug fixes

[Unreleased]: https://github.com/Alpine-DAV/ascent/compare/v0.5.0...HEAD
[Unreleased]: https://github.com/Alpine-DAV/ascent/compare/v0.5.1...HEAD
[0.5.1]: https://github.com/Alpine-DAV/ascent/compare/v0.5.0...v0.5.1
[0.5.0]: https://github.com/Alpine-DAV/ascent/compare/v0.4.0...v0.5.0
[0.4.0]: https://github.com/Alpine-DAV/ascent/compare/v0.3.0...v0.4.0

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.0")
project(ascent VERSION "0.5.1")

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

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

root["number_of_files"] = global_domains;
// for now we will save one file per domain, so trees == files
Expand Down
21 changes: 21 additions & 0 deletions src/docs/sphinx/Releases.rst
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,27 @@ Source distributions for Ascent are hosted on github:
https://github.com/Alpine-DAV/ascent/releases


v0.5.1
-------

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

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

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

Added
~~~~~~~~~

* Added support to render multiple topologies in the same scene.
* Added a Data Object construct to the main Ascent runtime to easily manage transformations between in-memory mesh representations.

Fixed
~~~~~~~~~
* Issue where cycle was not properly propagated when converting mfem data.
* Cinema issue where zoom was applied additively each cycle to oblivion.
* Cinema issue where cameras were not following the center of the data set.

v0.5.0
-------
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.0'
version = '0.5.1'
# The full version, including alpha/beta/rc tags.
release = '0.5.0'
release = '0.5.1'

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

0 comments on commit 51f5b32

Please sign in to comment.