Skip to content

Commit a77fcc1

Browse files
committed
Change version number
1 parent adfb045 commit a77fcc1

File tree

4 files changed

+21
-5
lines changed

4 files changed

+21
-5
lines changed

README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,14 @@ pip3 install -i https://test.pypi.org/simple/ RunnerPost
4545

4646
### From Source
4747

48-
Alternatively, you can build RunnerPost from source. To do so, follow these steps:
48+
Alternatively, you can build RunnerPost from source.
49+
50+
On Linux, Windows and Mac OS X, RunnerPost can be compiled using *CMake*, a tool to manage building of source code.
51+
52+
The minimum version of *CMake* is 3.15. *CMake* will detect which compiler is available. A recent C++ compiler supporting C++14 is also required.
53+
54+
55+
Follow these steps for getting the source and build RunnerPost:
4956

5057
1. Clone the repository:
5158
```bash
@@ -67,6 +74,7 @@ Alternatively, you can build RunnerPost from source. To do so, follow these step
6774
pip install --user --force-reinstall dist/*whl
6875
```
6976

77+
7078
## Usage
7179

7280
RunnerPost is a post-processing tool that produces text data profiles from existing optimization results.

pythonInterface/README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,14 @@ pip3 install -i https://test.pypi.org/simple/ RunnerPost
4545

4646
### From Source
4747

48-
Alternatively, you can build RunnerPost from source. To do so, follow these steps:
48+
Alternatively, you can build RunnerPost from source.
49+
50+
On Linux, Windows and Mac OS X, RunnerPost can be compiled using *CMake*, a tool to manage building of source code.
51+
52+
The minimum version of *CMake* is 3.15. *CMake* will detect which compiler is available. A recent C++ compiler supporting C++14 is also required.
53+
54+
55+
Follow these steps for getting the source and build RunnerPost:
4956

5057
1. Clone the repository:
5158
```bash
@@ -67,6 +74,7 @@ Alternatively, you can build RunnerPost from source. To do so, follow these step
6774
pip install --user --force-reinstall dist/*whl
6875
```
6976

77+
7078
## Usage
7179

7280
RunnerPost is a post-processing tool that produces text data profiles from existing optimization results.

pythonInterface/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "RunnerPost"
3-
version = "1.0b2"
3+
version = "1.0b3"
44
authors = [
55
{ name = "Christophe Tribes" },
66
]

src/runnerpost_version.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#undef RUNNERPOST
22

33
/// Namespace alias RUNNERPOST is hard defined to distinguish between library versions
4-
#define RUNNERPOST RUNNERPOST_1_0_BETA2
4+
#define RUNNERPOST RUNNERPOST_1_0_BETA3
55

66
/// Define version number
77
#undef RUNNERPOST_VERSION_NUMBER
8-
#define RUNNERPOST_VERSION_NUMBER "1.0b2"
8+
#define RUNNERPOST_VERSION_NUMBER "1.0b3"

0 commit comments

Comments
 (0)