Skip to content

Commit 5796042

Browse files
authored
update docs for 0.8.6 release (#1066)
1 parent 2e39556 commit 5796042

7 files changed

Lines changed: 41 additions & 8 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Notable changes to Conduit are documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project aspires to adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7-
## Unreleased
7+
## [0.8.6] - Released 2023-01-11
88

99
### Added
1010
#### General

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2014-2022, Lawrence Livermore National Security, LLC.
1+
Copyright (c) 2014-2023, Lawrence Livermore National Security, LLC.
22

33
Produced at the Lawrence Livermore National Laboratory
44

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
from setuptools.command.build_ext import build_ext
4343
from distutils.version import LooseVersion
4444

45-
CONDUIT_VERSION = '0.8.5'
45+
CONDUIT_VERSION = '0.8.6'
4646

4747
class CMakeExtension(Extension):
4848
def __init__(self, name, sourcedir=''):

src/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ endif()
1515
# Conduit
1616
################################
1717

18-
project(conduit VERSION "0.8.5")
18+
project(conduit VERSION "0.8.6")
1919

2020
################################
2121
# Build Options

src/docs/sphinx/conf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,16 +62,16 @@
6262

6363
# General information about the project.
6464
project = u'Conduit'
65-
copyright = u'Copyright (c) 2014-2022, LLNS'
65+
copyright = u'Copyright (c) 2014-2023, LLNS'
6666

6767
# The version info for the project you're documenting, acts as replacement for
6868
# |version| and |release|, also used in various other places throughout the
6969
# built documents.
7070
#
7171
# The short X.Y version.
72-
version = '0.8.5'
72+
version = '0.8.6'
7373
# The full version, including alpha/beta/rc tags.
74-
release = '0.8.5'
74+
release = '0.8.6'
7575

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

src/docs/sphinx/releases.rst

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,39 @@ https://github.com/LLNL/conduit/releases
1212

1313
.. 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.
1414

15+
v0.8.6
16+
---------------------------------
17+
18+
* `Source Tarball <https://github.com/LLNL/conduit/releases/download/v0.8.6/conduit-v0.8.6-src-with-blt.tar.gz>`__
19+
20+
Highlights
21+
++++++++++++++++++++++++++++++++++++
22+
23+
(Extracted from Conduit's :download:`Changelog <../../../CHANGELOG.md>`)
24+
25+
26+
Added
27+
~~~~~
28+
29+
30+
* **General**
31+
32+
* 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.
33+
34+
Fixed
35+
~~~~~
36+
37+
38+
* **General**
39+
40+
* Build fixes for Conda Forge (mpi -fallow-argument-mismatch clang protection)
41+
42+
* **Relay**
43+
44+
* Fixed a directory creation bug in ``relay::io::blueprint::{save_mesh|write_mesh}`` that occurred with sparse topologies with no domains on rank 0.
45+
* 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.
46+
47+
1548

1649
v0.8.5
1750
---------------------------------

src/libs/conduit/conduit_license.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#ifndef CONDUIT_LICENSE_TEXT_HPP
66
#define CONDUIT_LICENSE_TEXT_HPP
77

8-
std::string CONDUIT_LICENSE_TEXT = "Copyright (c) 2014-2021, Lawrence Livermore National Security, LLC.\n"
8+
std::string CONDUIT_LICENSE_TEXT = "Copyright (c) 2014-2023, Lawrence Livermore National Security, LLC.\n"
99
"\n"
1010
"Produced at the Lawrence Livermore National Laboratory\n"
1111
"\n"

0 commit comments

Comments
 (0)