Skip to content

Commit

Permalink
update docs for 0.8.6 release (#1066)
Browse files Browse the repository at this point in the history
  • Loading branch information
cyrush authored Jan 11, 2023
1 parent 2e39556 commit 5796042
Show file tree
Hide file tree
Showing 7 changed files with 41 additions and 8 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 Conduit are documented in this file.
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.8.6] - Released 2023-01-11

### Added
#### General
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
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

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
from setuptools.command.build_ext import build_ext
from distutils.version import LooseVersion

CONDUIT_VERSION = '0.8.5'
CONDUIT_VERSION = '0.8.6'

class CMakeExtension(Extension):
def __init__(self, name, sourcedir=''):
Expand Down
2 changes: 1 addition & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ endif()
# Conduit
################################

project(conduit VERSION "0.8.5")
project(conduit VERSION "0.8.6")

################################
# Build Options
Expand Down
6 changes: 3 additions & 3 deletions src/docs/sphinx/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,16 +62,16 @@

# General information about the project.
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
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
version = '0.8.5'
version = '0.8.6'
# 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
# for a list of supported languages.
Expand Down
33 changes: 33 additions & 0 deletions src/docs/sphinx/releases.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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.

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
---------------------------------
Expand Down
2 changes: 1 addition & 1 deletion src/libs/conduit/conduit_license.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#ifndef 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"
"Produced at the Lawrence Livermore National Laboratory\n"
"\n"
Expand Down

0 comments on commit 5796042

Please sign in to comment.