Skip to content

Commit 3ee8b57

Browse files
committed
Release: 0.13.4
Changelog and version bumps
1 parent 4af321b commit 3ee8b57

File tree

6 files changed

+24
-7
lines changed

6 files changed

+24
-7
lines changed

CHANGELOG.rst

+18-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,23 @@
33
Changelog
44
=========
55

6+
0.13.4
7+
------
8+
**Date:** 2021-05-13
9+
10+
Fix AppleClang & DPC++ Build
11+
12+
Fix a missing include that fails builds with Apple's ``clang`` and Intel's ``dpcpp`` compilers.
13+
14+
Changes to "0.13.3"
15+
^^^^^^^^^^^^^^^^^^^
16+
17+
Bug Fixes
18+
"""""""""
19+
20+
- ``Variant.hpp``: ``size_t`` include #972
21+
22+
623
0.13.3
724
------
825
**Date:** 2021-04-09
@@ -11,7 +28,7 @@ Fix Various Read Issues
1128

1229
This release fixes various bugs related to reading: a chunk fallback for constant components, skip missing patch records, a backend bug in each ADIOS2 & HDF5, and we made the Python ``load_chunk`` method more robust.
1330

14-
Changes to "0.13.3"
31+
Changes to "0.13.2"
1532
^^^^^^^^^^^^^^^^^^^
1633

1734
Bug Fixes

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#
33
cmake_minimum_required(VERSION 3.15.0)
44

5-
project(openPMD VERSION 0.13.3) # LANGUAGES CXX
5+
project(openPMD VERSION 0.13.4) # LANGUAGES CXX
66

77
# the openPMD "markup"/"schema" standard version
88
set(openPMD_STANDARD_VERSION 1.1.0)

docs/source/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -82,9 +82,9 @@
8282
# built documents.
8383
#
8484
# The short X.Y version.
85-
version = u'0.13.3'
85+
version = u'0.13.4'
8686
# The full version, including alpha/beta/rc tags.
87-
release = u'0.13.3'
87+
release = u'0.13.4'
8888

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

docs/source/index.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ openPMD-api version supported openPMD standard versions
4242
======================== ===================================
4343
``2.0.0+`` ``2.0.0+`` (not released yet)
4444
``1.0.0+`` ``1.0.1-1.1.0`` (not released yet)
45-
``0.13.0-0.13.3`` (beta) ``1.0.0-1.1.0``
45+
``0.13.0-0.13.4`` (beta) ``1.0.0-1.1.0``
4646
``0.1.0-0.12.0`` (alpha) ``1.0.0-1.1.0``
4747
======================== ===================================
4848

include/openPMD/version.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
*/
3030
#define OPENPMDAPI_VERSION_MAJOR 0
3131
#define OPENPMDAPI_VERSION_MINOR 13
32-
#define OPENPMDAPI_VERSION_PATCH 3
32+
#define OPENPMDAPI_VERSION_PATCH 4
3333
#define OPENPMDAPI_VERSION_LABEL ""
3434
/** @} */
3535

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ def build_extension(self, ext):
142142
setup(
143143
name='openPMD-api',
144144
# note PEP-440 syntax: x.y.zaN but x.y.z.devN
145-
version='0.13.3',
145+
version='0.13.4',
146146
author='Fabian Koller, Franz Poeschel, Axel Huebl',
147147
148148
maintainer='Axel Huebl',

0 commit comments

Comments
 (0)