Skip to content

Commit

Permalink
Preparing 1.0.14 release
Browse files Browse the repository at this point in the history
  • Loading branch information
landro committed May 4, 2020
1 parent c88e866 commit bd55ca9
Show file tree
Hide file tree
Showing 22 changed files with 29 additions and 27 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
.settings
.buildpath
.project
.idea
*.iml
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
are used when configuring [F5 BIG-IP](http://www.f5.com/products/big-ip/) devices.

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

## Getting started

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

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

On MacOS X and Linux:

export TCLLIBPATH=whereever/TesTcl-1.0.13
export TCLLIBPATH=whereever/TesTcl-1.0.14

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

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

```tcl
package require -exact testcl 1.0.13
package require -exact testcl 1.0.14
namespace import ::testcl::*
# Comment in to enable logging
Expand Down Expand Up @@ -290,7 +290,7 @@ rule advanced {
The specs for this iRule would look like this:

```tcl
package require -exact testcl 1.0.13
package require -exact testcl 1.0.14
namespace import ::testcl::*
# Comment out to suppress logging
Expand Down Expand Up @@ -405,7 +405,7 @@ rule headers {
The example specs for this iRule would look like this:

```tcl
package require -exact testcl 1.0.13
package require -exact testcl 1.0.14
namespace import ::testcl::*
# Comment out to suppress logging
Expand Down Expand Up @@ -451,7 +451,7 @@ rule classes {
with code that looks like this

```tcl
package require -exact testcl 1.0.13
package require -exact testcl 1.0.14
namespace import testcl::*
before {
Expand Down
2 changes: 1 addition & 1 deletion examples/errors/error_simple.tcl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package require -exact testcl 1.0.13
package require -exact testcl 1.0.14
namespace import ::testcl::*

##
Expand Down
2 changes: 1 addition & 1 deletion examples/example_irule_advanced.tcl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package require -exact testcl 1.0.13
package require -exact testcl 1.0.14
namespace import ::testcl::*

##
Expand Down
2 changes: 1 addition & 1 deletion examples/example_irule_call.tcl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package require -exact testcl 1.0.13
package require -exact testcl 1.0.14
namespace import ::testcl::*

# Comment in to enable logging
Expand Down
2 changes: 1 addition & 1 deletion examples/example_irule_classes.tcl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package require -exact testcl 1.0.13
package require -exact testcl 1.0.14
namespace import ::testcl::*

before {
Expand Down
2 changes: 1 addition & 1 deletion examples/example_irule_headers.tcl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package require -exact testcl 1.0.13
package require -exact testcl 1.0.14
namespace import ::testcl::*

##
Expand Down
2 changes: 1 addition & 1 deletion examples/example_irule_pool_verification.tcl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package require -exact testcl 1.0.13
package require -exact testcl 1.0.14
namespace import ::testcl::*

# Comment out to suppress logging
Expand Down
2 changes: 1 addition & 1 deletion examples/example_irule_simple.tcl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package require -exact testcl 1.0.13
package require -exact testcl 1.0.14
namespace import ::testcl::*

##
Expand Down
2 changes: 1 addition & 1 deletion examples/example_irule_variables.tcl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package require -exact testcl 1.0.13
package require -exact testcl 1.0.14
namespace import ::testcl::*

##
Expand Down
2 changes: 1 addition & 1 deletion pkgIndex.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ set sources {}
foreach {f} $files {
lappend sources [list source [file join $dir src $f]]
}
package ifneeded testcl 1.0.13 [join $sources "\n"]
package ifneeded testcl 1.0.14 [join $sources "\n"]

# Disable certain Tcl commands from iRules
if { $::tcl_platform(platform) eq "java" } {
Expand Down
2 changes: 1 addition & 1 deletion scripts/release.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ Mac OS X/Free BSD

Tagging a new release and pushing to origin

git tag -a v1.0.13 -m 'Release 1.0.13'
git tag -a v1.0.14 -m 'Release 1.0.14'
git push --tags
2 changes: 1 addition & 1 deletion src/assert.tcl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package provide testcl 1.0.13
package provide testcl 1.0.14
package require log

namespace eval ::testcl {
Expand Down
2 changes: 1 addition & 1 deletion src/classes.tcl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package provide testcl 1.0.13
package provide testcl 1.0.14
package require log
package require cmdline

Expand Down
2 changes: 1 addition & 1 deletion src/global.tcl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package provide testcl 1.0.13
package provide testcl 1.0.14
package require log

namespace eval ::testcl {
Expand Down
2 changes: 1 addition & 1 deletion src/ip.tcl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package provide testcl 1.0.13
package provide testcl 1.0.14
package require log
package require ip

Expand Down
2 changes: 1 addition & 1 deletion src/irulehttp.tcl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package provide testcl 1.0.13
package provide testcl 1.0.14
package require log

package require base64
Expand Down
2 changes: 1 addition & 1 deletion src/iruleuri.tcl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package provide testcl 1.0.13
package provide testcl 1.0.14
package require log

package require base64
Expand Down
2 changes: 1 addition & 1 deletion src/it.tcl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package provide testcl 1.0.13
package provide testcl 1.0.14
package require log

namespace eval ::testcl {
Expand Down
2 changes: 1 addition & 1 deletion src/on.tcl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package provide testcl 1.0.13
package provide testcl 1.0.14
package require log

namespace eval ::testcl {
Expand Down
2 changes: 1 addition & 1 deletion src/onirule.tcl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package provide testcl 1.0.13
package provide testcl 1.0.14
package require log

namespace eval ::testcl {
Expand Down
2 changes: 1 addition & 1 deletion test/test_cookie.tcl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package require -exact testcl 1.0.13
package require -exact testcl 1.0.14
namespace import ::testcl::*

before {
Expand Down

0 comments on commit bd55ca9

Please sign in to comment.