Skip to content
Snippets Groups Projects
Unverified Commit 5796042c authored by Cyrus Harrison's avatar Cyrus Harrison Committed by GitHub
Browse files

update docs for 0.8.6 release (#1066)

parent 2e395567
No related branches found
No related tags found
No related merge requests found
...@@ -4,7 +4,7 @@ Notable changes to Conduit are documented in this file. ...@@ -4,7 +4,7 @@ Notable changes to Conduit are documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), 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). and this project aspires to adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## Unreleased ## [0.8.6] - Released 2023-01-11
### Added ### Added
#### General #### General
......
Copyright (c) 2014-2022, Lawrence Livermore National Security, LLC. Copyright (c) 2014-2023, Lawrence Livermore National Security, LLC.
Produced at the Lawrence Livermore National Laboratory Produced at the Lawrence Livermore National Laboratory
......
...@@ -42,7 +42,7 @@ from setuptools import setup, Extension ...@@ -42,7 +42,7 @@ from setuptools import setup, Extension
from setuptools.command.build_ext import build_ext from setuptools.command.build_ext import build_ext
from distutils.version import LooseVersion from distutils.version import LooseVersion
CONDUIT_VERSION = '0.8.5' CONDUIT_VERSION = '0.8.6'
class CMakeExtension(Extension): class CMakeExtension(Extension):
def __init__(self, name, sourcedir=''): def __init__(self, name, sourcedir=''):
......
...@@ -15,7 +15,7 @@ endif() ...@@ -15,7 +15,7 @@ endif()
# Conduit # Conduit
################################ ################################
project(conduit VERSION "0.8.5") project(conduit VERSION "0.8.6")
################################ ################################
# Build Options # Build Options
......
...@@ -62,16 +62,16 @@ master_doc = 'index' ...@@ -62,16 +62,16 @@ master_doc = 'index'
# General information about the project. # General information about the project.
project = u'Conduit' project = u'Conduit'
copyright = u'Copyright (c) 2014-2022, LLNS' copyright = u'Copyright (c) 2014-2023, LLNS'
# The version info for the project you're documenting, acts as replacement for # The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the # |version| and |release|, also used in various other places throughout the
# built documents. # built documents.
# #
# The short X.Y version. # The short X.Y version.
version = '0.8.5' version = '0.8.6'
# The full version, including alpha/beta/rc tags. # The full version, including alpha/beta/rc tags.
release = '0.8.5' release = '0.8.6'
# The language for content autogenerated by Sphinx. Refer to documentation # The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages. # for a list of supported languages.
......
...@@ -12,6 +12,39 @@ https://github.com/LLNL/conduit/releases ...@@ -12,6 +12,39 @@ https://github.com/LLNL/conduit/releases
.. note:: Conduit uses `BLT <https://github.com/LLNL/blt>`__ as its core CMake build system. We leverage BLT as a git submodule, however github does not include submodule contents in its automatically created source tarballs. To avoid confusion, starting with v0.3.0 we provide our own source tarballs that include BLT. .. note:: Conduit uses `BLT <https://github.com/LLNL/blt>`__ as its core CMake build system. We leverage BLT as a git submodule, however github does not include submodule contents in its automatically created source tarballs. To avoid confusion, starting with v0.3.0 we provide our own source tarballs that include BLT.
v0.8.6
---------------------------------
* `Source Tarball <https://github.com/LLNL/conduit/releases/download/v0.8.6/conduit-v0.8.6-src-with-blt.tar.gz>`__
Highlights
++++++++++++++++++++++++++++++++++++
(Extracted from Conduit's :download:`Changelog <../../../CHANGELOG.md>`)
Added
~~~~~
* **General**
* Added C++ ``int DataType::sizeof_index_t()`` and C ``int conduit_datatype_sizeof_index_t()`` methods to provide a stable ABI to determine configured size (number of bytes) of Conduit's index_t type.
Fixed
~~~~~
* **General**
* Build fixes for Conda Forge (mpi -fallow-argument-mismatch clang protection)
* **Relay**
* Fixed a directory creation bug in ``relay::io::blueprint::{save_mesh|write_mesh}`` that occurred with sparse topologies with no domains on rank 0.
* Fixed a bug in ``relay::io::blueprint::{save_mesh|write_mesh}`` with the ``suffix=cycle`` option that could cause int max to erroneously be used as the cycle number in the output directory.
v0.8.5 v0.8.5
--------------------------------- ---------------------------------
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
#ifndef CONDUIT_LICENSE_TEXT_HPP #ifndef CONDUIT_LICENSE_TEXT_HPP
#define CONDUIT_LICENSE_TEXT_HPP #define CONDUIT_LICENSE_TEXT_HPP
std::string CONDUIT_LICENSE_TEXT = "Copyright (c) 2014-2021, Lawrence Livermore National Security, LLC.\n" std::string CONDUIT_LICENSE_TEXT = "Copyright (c) 2014-2023, Lawrence Livermore National Security, LLC.\n"
"\n" "\n"
"Produced at the Lawrence Livermore National Laboratory\n" "Produced at the Lawrence Livermore National Laboratory\n"
"\n" "\n"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment