Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion BUILDING.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
## Prerequisites

* An Oracle client environment (release 19.9 or higher) used for building the tool; Instant Client including basiclite, sdk and sqlplus is fine.
* Potentially client environments for other releases than the primary build release, these can similarly use full client or Instant Client; releases 11, 12, 18, 19, 21 are supported.
* Potentially client environments for other releases than the primary build release, these can similarly use full client or Instant Client; releases 11, 12, 18, 19, 21, 23 are supported.
* For client release 19, you must have at least 19.9.
* A database (release 19 or higher, release 21.3 preferred) that can be used to run test scripts.
* An environment with the gcc compiler and tools like make.
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
* Add normalrandom function returning normal distributed random numbers
* Various improvements for connectionpool
* Double values are assigned to integer using trunc
* Add statisticsonly attribue
* Default branch is now named "development"

## 3.0.5

Expand Down
11 changes: 7 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,13 @@ See [docs/INSTALL.md](docs/INSTALL.md) for details.
## Branches

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.
The branch named "development" is getting frequent commits
and may as such contain intermediate code.
The master branch receives occasional pull request from the development branch.
You should normally _not_ clone or checkout the development or master branch
unless you are developing the rwloadsim code or always want the latest.
If you use the development or master branch, you _must_ do compilation yourself;
no binaries are released.

At present, branch 3.0.5 is the release branch.

Expand Down
2 changes: 1 addition & 1 deletion SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ security features are welcome on GitHub Issues.

Security updates will be released on a regular cadence. Many of our projects
will typically release security fixes in conjunction with the
[Oracle Critical Patch Update][3] program. Additional
Oracle Critical Patch Update program. Additional
information, including past advisories, is available on our [security alerts][4]
page.

Expand Down
2 changes: 1 addition & 1 deletion admin/.vim/syntax/rwl.vim
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ syn keyword rwlKeyword abort function bindout between clob blob raw date ignoree
syn keyword rwlKeyword getenv system opensessioncount activesessioncount serverrelease
syn keyword rwlKeyword unsigned hexadecimal octal printf fprintf encode decode elseif
syn keyword rwlKeyword connectionpool connectionclass sprintf global querynotification
syn keyword rwlKeyword normalrandom
syn keyword rwlKeyword normalrandom statisticsonly
syn keyword rwlKeyword getrusage instr instrb regexextract nextgroup=rwlNumber skipwhite

syn match rwlVariable "\$#"
Expand Down
Loading