Skip to content

Commit

Permalink
Master now becomes 3.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
bengsig committed Sep 19, 2022
1 parent a513b2e commit f74af12
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 11 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,26 +10,27 @@ installation using rwlman and from

## News

Release 3.0 includes four major new features:
Release 3.0 includes these major new features:

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

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

## Branches

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

At present, branch 3.0.2 is the release branch.
At present, branch 3.0.3 is the release branch.

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

Expand Down
8 changes: 4 additions & 4 deletions docs/INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ There are two types of binary distributions available at github releases:
* Complete binaries are in files that have -bin- in the name.
* Little more than executables are in files that have -binonly- in the name.

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

Expand Down
4 changes: 2 additions & 2 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ An introduction and the users guide to the RWP\*Load Simulator is available at
[index.md](index.md) for your actual branch or
[https://oracle.github.io/rwloadsim/](https://oracle.github.io/rwloadsim/)
for the current
[binary release 3.0.2](https://github.com/oracle/rwloadsim/releases).
[binary release 3.0.3](https://github.com/oracle/rwloadsim/releases).

## RWP\*Load Simulator reference manual

The reference manual is available after installation by typing
```
rwlman
```
or online (for release 3.0.2) in [refman/README.md](refman/README.md)
or online (for release 3.0.3) in [refman/README.md](refman/README.md)
4 changes: 2 additions & 2 deletions src/rwl.h
Original file line number Diff line number Diff line change
Expand Up @@ -1829,8 +1829,8 @@ extern const char rwlexecbanner[];

#define RWL_VERSION_MAJOR 3
#define RWL_VERSION_MINOR 0
#define RWL_VERSION_RELEASE 2
#define RWL_VERSION_TEXT "Development" RWL_EXTRA_VERSION_TEXT
#define RWL_VERSION_RELEASE 3
#define RWL_VERSION_TEXT "Production" RWL_EXTRA_VERSION_TEXT
#define RWL_VERSION_DATE // undef to not include compile date
extern ub4 rwlpatch;

Expand Down

0 comments on commit f74af12

Please sign in to comment.