Skip to content

Commit 0a7bd66

Browse files
committed
Version: 1.1.0.3
1 parent 741e2df commit 0a7bd66

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
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.1.0.2
46+
pip install openPMD-validator==1.1.0.3
4747
```
4848

4949
### Spack
5050

5151
```bash
52-
spack install [email protected].2 ^py-h5py~mpi
53-
spack load --dependencies [email protected].2 ^py-h5py~mpi
52+
spack install [email protected].3 ^py-h5py~mpi
53+
spack load --dependencies [email protected].3 ^py-h5py~mpi
5454
```
5555

5656
### Conda
5757

5858
```bash
59-
conda install -c ax3l openpmd_validator==1.1.0.2
59+
conda install -c ax3l openpmd_validator==1.1.0.3
6060
```
6161

6262
### From Source
6363

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

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

RELEASING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ username = <yourPypiUsername>
3636
validator scripts: `1.1.0.5`
3737

3838
- Make sure that the version number in `setup.cfg`, `conda_recipe/meta.yaml`,
39-
`README.md`, `checkOpenPMD*.py` **and** in `createExamples*.py` correspond to
39+
`README.md`, `openpmd_validator/checkOpenPMD*.py` **and** in `openpmd_validator/createExamples*.py` correspond to
4040
the new release. Executing the script `newVersion.sh` will update all places
4141
for you.
4242

conda_recipe/meta.yaml

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

33
package:
44
name: openpmd_validator

newVersion.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ echo
5050
read -p "openPMD STANDARD MAJOR version? (e.g. 1) " -r
5151
MAJOR=$REPLY
5252
echo
53-
read -p "openPMD STANDARD MINOR version? (e.g. 0) " -r
53+
read -p "openPMD STANDARD MINOR version? (e.g. 1) " -r
5454
MINOR=$REPLY
5555
echo
5656
read -p "openPMD STANDARD PATCH version? (e.g. 0) " -r

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.1.0.1")
106+
f.attrs["softwareVersion"] = np.string_("1.1.0.3")
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.1.0.2',
16+
version='1.1.0.3',
1717
url='https://github.com/openPMD/openPMD-validator',
1818
# author=..., # TODO
1919
# author_email=..., # TODO

0 commit comments

Comments
 (0)