Skip to content

Commit f74af12

Browse files
committed
Master now becomes 3.0.3
1 parent a513b2e commit f74af12

File tree

4 files changed

+12
-11
lines changed

4 files changed

+12
-11
lines changed

README.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -10,26 +10,27 @@ installation using rwlman and from
1010

1111
## News
1212

13-
Release 3.0 includes four major new features:
13+
Release 3.0 includes these major new features:
1414

1515
* SQL declaration no longer needs explicit bind and/or define, as bind variables and select list elements can be implicitly matched to declared variables.
1616
* The separate declaration and subsequent execution of SQL is no longer needed.
1717
* Formatting of output using printf.
1818
* You can generate a single executable with an included rwl script.
19+
* New syntax for file open for read, append or pipe (added in 3.0.3)
1920

2021
In addition, there are several minor update,
2122
a number of bug fixes and updates to the standard oltp workload
2223
as shown in [CHANGELOG.md](CHANGELOG.md).
2324

2425
## Branches
2526

26-
The branches that should be used by ordinary users are named after the release, e.g. 3.0.2.
27+
The branches that should be used by ordinary users are named after the release, e.g. 3.0.3.
2728
The master branch is always the development branch and may as such contain intermediate code.
2829
You should normally _not_ clone or checkout the master branch unless you are developing the
2930
rwloadsim code or always want the latest.
3031
If you use the master branch, you _must_ do compilation yourself; no binaries are released.
3132

32-
At present, branch 3.0.2 is the release branch.
33+
At present, branch 3.0.3 is the release branch.
3334

3435
Please see [CHANGELOG.md](CHANGELOG.md) for details.
3536

docs/INSTALL.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ There are two types of binary distributions available at github releases:
55
* Complete binaries are in files that have -bin- in the name.
66
* Little more than executables are in files that have -binonly- in the name.
77

8-
Complete binaries distributed in a file such rwloadsim-linux-x86_64-bin-3.0.2.tgz
8+
Complete binaries distributed in a file such rwloadsim-linux-x86_64-bin-3.0.3.tgz
99
can be used as is, i.e. without getting a clone or pull from github.
1010
It should be used if you simply want a full run time environment
1111
and it contains the following directories:
@@ -24,7 +24,7 @@ and it contains the following directories:
2424
If you prefer to have access to source code, but avoid building the executables,
2525
you can clone or pull from github (which would allow you to potentially compile
2626
rwloadsim yourself), and then
27-
use a file like rwloadsim-linux-x86_64-binonly-3.0.2.tgz.
27+
use a file like rwloadsim-linux-x86_64-binonly-3.0.3.tgz.
2828
This file contains little more than the compiled binaries of the rwloadsim program,
2929
and you can simply un-tar this file
3030
directly into your cloned or pulled directory; the result will be as if you had
@@ -43,7 +43,7 @@ On the system where you are going to run rwloadsim,
4343
create a (possibly shared) directory where you simply
4444
use a command like
4545
```
46-
tar -zxvf rwloadsim-linux-x86_64-bin-3.0.2.tgz
46+
tar -zxvf rwloadsim-linux-x86_64-bin-3.0.3.tgz
4747
```
4848
One install can be shared between several users as long as all have access to the directory.
4949
If appropriate, you can put the directory on an NFS (or some other) share and make it available to multiple systems.
@@ -62,7 +62,7 @@ You can use Oracle Instant Client or a full client (or even server) install.
6262
Start by doing a pull or clone of the sources from github
6363
as if you would do your own compile, and then use a command like
6464
```
65-
tar -zxvf rwloadsim-linux-x86_64-binonly-3.0.2.tgz
65+
tar -zxvf rwloadsim-linux-x86_64-binonly-3.0.3.tgz
6666
```
6767
to extract little more than the compiled rwloadsim binaries into your already existing pull or clone.
6868

docs/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ An introduction and the users guide to the RWP\*Load Simulator is available at
44
[index.md](index.md) for your actual branch or
55
[https://oracle.github.io/rwloadsim/](https://oracle.github.io/rwloadsim/)
66
for the current
7-
[binary release 3.0.2](https://github.com/oracle/rwloadsim/releases).
7+
[binary release 3.0.3](https://github.com/oracle/rwloadsim/releases).
88

99
## RWP\*Load Simulator reference manual
1010

1111
The reference manual is available after installation by typing
1212
```
1313
rwlman
1414
```
15-
or online (for release 3.0.2) in [refman/README.md](refman/README.md)
15+
or online (for release 3.0.3) in [refman/README.md](refman/README.md)

src/rwl.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -1829,8 +1829,8 @@ extern const char rwlexecbanner[];
18291829

18301830
#define RWL_VERSION_MAJOR 3
18311831
#define RWL_VERSION_MINOR 0
1832-
#define RWL_VERSION_RELEASE 2
1833-
#define RWL_VERSION_TEXT "Development" RWL_EXTRA_VERSION_TEXT
1832+
#define RWL_VERSION_RELEASE 3
1833+
#define RWL_VERSION_TEXT "Production" RWL_EXTRA_VERSION_TEXT
18341834
#define RWL_VERSION_DATE // undef to not include compile date
18351835
extern ub4 rwlpatch;
18361836

0 commit comments

Comments
 (0)