Skip to content

Commit bb98f66

Browse files
authored
Post 0.15.0 Changelog Template (#1420)
Change back to `-dev` after the 0.15.0 & 0.15.1 releases :)
1 parent 6940f82 commit bb98f66

File tree

8 files changed

+31
-10
lines changed

8 files changed

+31
-10
lines changed

.github/workflows/windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
4343
python3.exe -m pip wheel .
4444
if(!$?) { Exit $LASTEXITCODE }
45-
python3.exe -m pip install openPMD_api-0.15.1-cp39-cp39-win_amd64.whl
45+
python3.exe -m pip install openPMD_api-0.16.0.dev0-cp39-cp39-win_amd64.whl
4646
if(!$?) { Exit $LASTEXITCODE }
4747
4848
python3.exe -c "import openpmd_api as api; print(api.variants)"

CHANGELOG.rst

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,27 @@
33
Changelog
44
=========
55

6+
0.16.0
7+
------
8+
**Date:** TBA
9+
10+
[Title]
11+
12+
[Summary]
13+
14+
Changes to "0.15.0"
15+
^^^^^^^^^^^^^^^^^^^
16+
17+
Features
18+
""""""""
19+
20+
Bug Fixes
21+
"""""""""
22+
23+
Other
24+
"""""
25+
26+
627
0.15.1
728
------
829
**Date:** 2023-04-02

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ contact:
2525
orcid: https://orcid.org/0000-0003-1943-7141
2626
email: axelhuebl@lbl.gov
2727
title: "openPMD-api: C++ & Python API for Scientific I/O with openPMD"
28-
version: 0.15.1
28+
version: 0.16.0-dev
2929
repository-code: https://github.com/openPMD/openPMD-api
3030
doi: 10.14278/rodare.27
3131
license: LGPL-3.0-or-later

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
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.15.1) # LANGUAGES CXX
5+
project(openPMD VERSION 0.16.0) # LANGUAGES CXX
66

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

docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,9 @@
8585
# built documents.
8686
#
8787
# The short X.Y version.
88-
version = u'0.15.1'
88+
version = u'0.16.0'
8989
# The full version, including alpha/beta/rc tags.
90-
release = u'0.15.1'
90+
release = u'0.16.0-dev'
9191

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

include/openPMD/version.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@
2828
* @{
2929
*/
3030
#define OPENPMDAPI_VERSION_MAJOR 0
31-
#define OPENPMDAPI_VERSION_MINOR 15
32-
#define OPENPMDAPI_VERSION_PATCH 1
33-
#define OPENPMDAPI_VERSION_LABEL ""
31+
#define OPENPMDAPI_VERSION_MINOR 16
32+
#define OPENPMDAPI_VERSION_PATCH 0
33+
#define OPENPMDAPI_VERSION_LABEL "dev"
3434
/** @} */
3535

3636
/** maximum supported version of the openPMD standard (read & write,

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ def build_extension(self, ext):
170170
setup(
171171
name='openPMD-api',
172172
# note PEP-440 syntax: x.y.zaN but x.y.z.devN
173-
version='0.15.1',
173+
version='0.16.0.dev',
174174
author='Axel Huebl, Franz Poeschel, Fabian Koller, Junmin Gu',
175175
author_email='axelhuebl@lbl.gov, f.poeschel@hzdr.de',
176176
maintainer='Axel Huebl',

test/SerialIOTest.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6031,7 +6031,7 @@ void adios2_bp5_no_steps(bool usesteps)
60316031
IO.DefineAttribute("/openPMD", std::string("1.1.0"));
60326032
IO.DefineAttribute("/openPMDextension", uint32_t(0));
60336033
IO.DefineAttribute("/software", std::string("openPMD-api"));
6034-
IO.DefineAttribute("/softwareVersion", std::string("0.15.1-dev"));
6034+
IO.DefineAttribute("/softwareVersion", std::string("0.16.0-dev"));
60356035

60366036
IO.DefineAttribute("/data/0/dt", double(1));
60376037
IO.DefineAttribute(

0 commit comments

Comments
 (0)