Skip to content

Commit bd55ca9

Browse files
committed
Preparing 1.0.14 release
1 parent c88e866 commit bd55ca9

22 files changed

+29
-27
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
.settings
22
.buildpath
33
.project
4+
.idea
5+
*.iml

README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
are used when configuring [F5 BIG-IP](http://www.f5.com/products/big-ip/) devices.
66

77
## News
8+
- 4th May 2020 - Version [1.0.14](https://github.com/landro/TesTcl/releases) released
89
- 10th November 2018 - Version [1.0.13](https://github.com/landro/TesTcl/releases) released
910
- 26th September 2018 - Version [1.0.12](https://github.com/landro/TesTcl/releases) released
1011
- 24th May 2018 - Version [1.0.11](https://github.com/landro/TesTcl/releases) released
1112
- 23rd March 2017 - Version [1.0.10](https://github.com/landro/TesTcl/releases) released
1213
- 29th April 2016 - Version [1.0.9](https://github.com/landro/TesTcl/releases) released
13-
- 16th December 2015 - Version [1.0.8](https://github.com/landro/TesTcl/releases) released
1414

1515
## Getting started
1616

@@ -43,7 +43,7 @@ rule simple {
4343
Now, create a file called *test_simple_irule.tcl* containing the following lines:
4444

4545
```tcl
46-
package require -exact testcl 1.0.13
46+
package require -exact testcl 1.0.14
4747
namespace import ::testcl::*
4848
4949
# Comment in to enable logging
@@ -124,7 +124,7 @@ Unzip, and add unzipped directory to the [TCLLIBPATH](http://jtcl.kenai.com/gett
124124

125125
On MacOS X and Linux:
126126

127-
export TCLLIBPATH=whereever/TesTcl-1.0.13
127+
export TCLLIBPATH=whereever/TesTcl-1.0.14
128128

129129
On Windows, create a System Variable named `TCLLIBPATH` and make sure that the path uses forward slashes '/'
130130

@@ -209,7 +209,7 @@ NB! Be carefull with using _on_ commands in _before_. If there will be another d
209209
Using the _before_ command, *test_simple_irule.tcl* can be rewritten as:
210210

211211
```tcl
212-
package require -exact testcl 1.0.13
212+
package require -exact testcl 1.0.14
213213
namespace import ::testcl::*
214214
215215
# Comment in to enable logging
@@ -290,7 +290,7 @@ rule advanced {
290290
The specs for this iRule would look like this:
291291

292292
```tcl
293-
package require -exact testcl 1.0.13
293+
package require -exact testcl 1.0.14
294294
namespace import ::testcl::*
295295
296296
# Comment out to suppress logging
@@ -405,7 +405,7 @@ rule headers {
405405
The example specs for this iRule would look like this:
406406

407407
```tcl
408-
package require -exact testcl 1.0.13
408+
package require -exact testcl 1.0.14
409409
namespace import ::testcl::*
410410
411411
# Comment out to suppress logging
@@ -451,7 +451,7 @@ rule classes {
451451
with code that looks like this
452452

453453
```tcl
454-
package require -exact testcl 1.0.13
454+
package require -exact testcl 1.0.14
455455
namespace import testcl::*
456456
457457
before {

examples/errors/error_simple.tcl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package require -exact testcl 1.0.13
1+
package require -exact testcl 1.0.14
22
namespace import ::testcl::*
33

44
##

examples/example_irule_advanced.tcl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package require -exact testcl 1.0.13
1+
package require -exact testcl 1.0.14
22
namespace import ::testcl::*
33

44
##

examples/example_irule_call.tcl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package require -exact testcl 1.0.13
1+
package require -exact testcl 1.0.14
22
namespace import ::testcl::*
33

44
# Comment in to enable logging

examples/example_irule_classes.tcl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package require -exact testcl 1.0.13
1+
package require -exact testcl 1.0.14
22
namespace import ::testcl::*
33

44
before {

examples/example_irule_headers.tcl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package require -exact testcl 1.0.13
1+
package require -exact testcl 1.0.14
22
namespace import ::testcl::*
33

44
##

examples/example_irule_pool_verification.tcl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package require -exact testcl 1.0.13
1+
package require -exact testcl 1.0.14
22
namespace import ::testcl::*
33

44
# Comment out to suppress logging

examples/example_irule_simple.tcl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package require -exact testcl 1.0.13
1+
package require -exact testcl 1.0.14
22
namespace import ::testcl::*
33

44
##

examples/example_irule_variables.tcl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package require -exact testcl 1.0.13
1+
package require -exact testcl 1.0.14
22
namespace import ::testcl::*
33

44
##

pkgIndex.tcl

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ set sources {}
6464
foreach {f} $files {
6565
lappend sources [list source [file join $dir src $f]]
6666
}
67-
package ifneeded testcl 1.0.13 [join $sources "\n"]
67+
package ifneeded testcl 1.0.14 [join $sources "\n"]
6868

6969
# Disable certain Tcl commands from iRules
7070
if { $::tcl_platform(platform) eq "java" } {

scripts/release.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ Mac OS X/Free BSD
77

88
Tagging a new release and pushing to origin
99

10-
git tag -a v1.0.13 -m 'Release 1.0.13'
10+
git tag -a v1.0.14 -m 'Release 1.0.14'
1111
git push --tags

src/assert.tcl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package provide testcl 1.0.13
1+
package provide testcl 1.0.14
22
package require log
33

44
namespace eval ::testcl {

src/classes.tcl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package provide testcl 1.0.13
1+
package provide testcl 1.0.14
22
package require log
33
package require cmdline
44

src/global.tcl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package provide testcl 1.0.13
1+
package provide testcl 1.0.14
22
package require log
33

44
namespace eval ::testcl {

src/ip.tcl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package provide testcl 1.0.13
1+
package provide testcl 1.0.14
22
package require log
33
package require ip
44

src/irulehttp.tcl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package provide testcl 1.0.13
1+
package provide testcl 1.0.14
22
package require log
33

44
package require base64

src/iruleuri.tcl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package provide testcl 1.0.13
1+
package provide testcl 1.0.14
22
package require log
33

44
package require base64

src/it.tcl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package provide testcl 1.0.13
1+
package provide testcl 1.0.14
22
package require log
33

44
namespace eval ::testcl {

src/on.tcl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package provide testcl 1.0.13
1+
package provide testcl 1.0.14
22
package require log
33

44
namespace eval ::testcl {

src/onirule.tcl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package provide testcl 1.0.13
1+
package provide testcl 1.0.14
22
package require log
33

44
namespace eval ::testcl {

test/test_cookie.tcl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package require -exact testcl 1.0.13
1+
package require -exact testcl 1.0.14
22
namespace import ::testcl::*
33

44
before {

0 commit comments

Comments
 (0)