Skip to content

Commit 1c6e75a

Browse files
authored
Merge pull request #33 from openPMD/topic-versionStandard
validator/creator: 1.1.0
2 parents 96ba17e + b37ef3f commit 1c6e75a

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# openPMD Validator Scripts
22

3-
[![Build Status 1.0.*](https://img.shields.io/travis/openPMD/openPMD-validator/1.0.X.svg?label=1.0.*)](https://travis-ci.org/openPMD/openPMD-validator/branches)
3+
[![Build Status 1.1.X](https://img.shields.io/travis/openPMD/openPMD-validator/1.1.X.svg?label=1.1.X)](https://travis-ci.org/openPMD/openPMD-validator/branches)
44
![Supported Python Versions](https://img.shields.io/pypi/pyversions/openPMD-validator.svg)
55
[![License](https://img.shields.io/badge/license-ISC-blue.svg)](https://opensource.org/licenses/ISC)
66

77
This repository contains scripts to validate existing files that (claim to)
88
implement the [openPMD Standard](https://github.com/openPMD/openPMD-standard)
9-
in version `1.0.*`.
9+
in version `1.1.*`.
1010

1111
Additional scripts to create random/empty files with the valid markup of the
1212
standard are also provided.
@@ -24,7 +24,7 @@ standard.
2424

2525
For more information on requirements for implementations, please refer to the
2626
section
27-
[*Implementations*](https://github.com/openPMD/openPMD-standard/blob/1.0.0/STANDARD.md#implementations)
27+
[*Implementations*](https://github.com/openPMD/openPMD-standard/blob/1.1.0/STANDARD.md#implementations)
2828
of the openPMD standard. The repository
2929
[openPMD-projects](https://github.com/openPMD/openPMD-projects)
3030
also lists a large collection of open source projects that already implement

openpmd_validator/check_h5.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525

2626
# version of the openPMD standard
27-
openPMD = "1.0.0"
27+
openPMD = "1.1.0"
2828

2929
ext_list = {"ED-PIC": np.uint32(1)}
3030

openpmd_validator/createExamples_h5.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def setup_root_attr(f):
7474
ext_list = [["ED-PIC", np.uint32(1)]]
7575

7676
# Required attributes
77-
f.attrs["openPMD"] = np.string_("1.0.0")
77+
f.attrs["openPMD"] = np.string_("1.1.0")
7878
f.attrs["openPMDextension"] = ext_list[0][1] # ED-PIC extension is used
7979
f.attrs["basePath"] = np.string_("/data/%T/")
8080
f.attrs["meshesPath"] = np.string_("meshes/")

0 commit comments

Comments
 (0)