Skip to content

Commit 9dd6cf1

Browse files
authored
Merge pull request #34 from openPMD/topic-bump1101
Bump Version: 1.1.0.1
2 parents 5d14e30 + 086c335 commit 9dd6cf1

File tree

5 files changed

+17
-10
lines changed

5 files changed

+17
-10
lines changed

README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -43,28 +43,28 @@ Choose *one* of the install methods below to get started:
4343

4444
```bash
4545
# optional: append --user
46-
pip install openPMD-validator==1.0.0.2
46+
pip install openPMD-validator==1.1.0.1
4747
```
4848

4949
### Spack
5050

5151
```bash
52-
spack install py-openpmd-validator@1.0.0.2 ^py-h5py~mpi
53-
spack load --dependencies py-openpmd-validator@1.0.0.2 ^py-h5py~mpi
52+
spack install py-openpmd-validator@1.1.0.1 ^py-h5py~mpi
53+
spack load --dependencies py-openpmd-validator@1.1.0.1 ^py-h5py~mpi
5454
```
5555

5656
### Conda
5757

5858
```bash
59-
conda install -c ax3l openpmd_validator==1.0.0.2
59+
conda install -c ax3l openpmd_validator==1.1.0.1
6060
```
6161

6262
### From Source
6363

6464
```bash
65-
wget https://github.com/openPMD/openPMD-validator/archive/1.0.0.2.tar.gz
66-
tar -xf 1.0.0.2.tar.gz
67-
cd openPMD-validator-1.0.0.2/
65+
wget https://github.com/openPMD/openPMD-validator/archive/1.1.0.1.tar.gz
66+
tar -xf 1.1.0.1.tar.gz
67+
cd openPMD-validator-1.1.0.1/
6868

6969
# optional: append --user
7070
python setup.py install

conda_recipe/meta.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{% set version = "1.0.0.2" %}
1+
{% set version = "1.1.0.1" %}
22

33
package:
44
name: openpmd_validator

newVersion.sh

+7
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,13 @@ sed -i 's/'\
9898
'\1'$VERSION_STR'\3/' \
9999
$REPO_DIR/conda_recipe/meta.yaml
100100

101+
# example creator scripts
102+
# hdf5
103+
sed -i 's/'\
104+
'\("softwareVersion".*\)'$regv'\(")\)/'\
105+
'\1'$VERSION_STR'\3/' \
106+
$REPO_DIR/openpmd_validator/createExamples_h5.py
107+
101108
# documentation
102109
sed -i 's/'\
103110
'\(.*validator==\)'$regv'\(.*\)/'\

openpmd_validator/createExamples_h5.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ def setup_root_attr(f):
103103
# Recommended attributes
104104
f.attrs["author"] = np.string_("Axel Huebl <[email protected]>")
105105
f.attrs["software"] = np.string_("openPMD Example Script")
106-
f.attrs["softwareVersion"] = np.string_("1.0.0")
106+
f.attrs["softwareVersion"] = np.string_("1.1.0.1")
107107
f.attrs["softwareDependencies"] = get_software_dependencies()
108108
f.attrs["machine"] = np.string_(socket.gethostname())
109109
f.attrs["date"] = np.string_(

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def read_readme():
1313

1414
setup(
1515
name='openPMD-validator',
16-
version='1.0.0.2',
16+
version='1.1.0.1',
1717
url='https://github.com/openPMD/openPMD-validator',
1818
# author=..., # TODO
1919
# author_email=..., # TODO

0 commit comments

Comments
 (0)