diff --git a/README.md b/README.md index 3ea75b8..7235549 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ rule simple { Now, create a file called *test_simple_irule.tcl* containing the following lines: ```tcl -package require -exact testcl 1.0.7 +package require -exact testcl 1.0.8 namespace import ::testcl::* # Comment in to enable logging @@ -119,7 +119,7 @@ You should get a success message. Download latest [TesTcl distribution](https://github.com/landro/TesTcl/releases) from github containing all the files (including examples) found in the project. Unzip, and add unzipped directory to the [TCLLIBPATH](http://jtcl.kenai.com/gettingstarted.html) environment variable: - export TCLLIBPATH=whereever/TesTcl-1.0.7 + export TCLLIBPATH=whereever/TesTcl-1.0.8 In order to run this example, type in the following at the command-line: @@ -199,7 +199,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.7 +package require -exact testcl 1.0.8 namespace import ::testcl::* # Comment in to enable logging @@ -280,7 +280,7 @@ rule advanced { The specs for this iRule would look like this: ```tcl -package require -exact testcl 1.0.7 +package require -exact testcl 1.0.8 namespace import ::testcl::* # Comment out to suppress logging @@ -395,7 +395,7 @@ rule headers { The example specs for this iRule would look like this: ```tcl -package require -exact testcl 1.0.7 +package require -exact testcl 1.0.8 namespace import ::testcl::* # Comment out to suppress logging @@ -441,7 +441,7 @@ rule classes { with code that looks like this ```tcl -package require -exact testcl 1.0.7 +package require -exact testcl 1.0.8 namespace import testcl::* before { diff --git a/examples/errors/error_simple.tcl b/examples/errors/error_simple.tcl index ef65f95..7ed92a1 100644 --- a/examples/errors/error_simple.tcl +++ b/examples/errors/error_simple.tcl @@ -1,4 +1,4 @@ -package require -exact testcl 1.0.7 +package require -exact testcl 1.0.8 namespace import ::testcl::* ## diff --git a/examples/example_irule_advanced.tcl b/examples/example_irule_advanced.tcl index bab4654..55faad6 100644 --- a/examples/example_irule_advanced.tcl +++ b/examples/example_irule_advanced.tcl @@ -1,4 +1,4 @@ -package require -exact testcl 1.0.7 +package require -exact testcl 1.0.8 namespace import ::testcl::* ## diff --git a/examples/example_irule_headers.tcl b/examples/example_irule_headers.tcl index 91609b5..27cb2c9 100644 --- a/examples/example_irule_headers.tcl +++ b/examples/example_irule_headers.tcl @@ -1,4 +1,4 @@ -package require -exact testcl 1.0.7 +package require -exact testcl 1.0.8 namespace import ::testcl::* ## diff --git a/examples/example_irule_simple.tcl b/examples/example_irule_simple.tcl index 040ebe6..d0dcfe1 100644 --- a/examples/example_irule_simple.tcl +++ b/examples/example_irule_simple.tcl @@ -1,4 +1,4 @@ -package require -exact testcl 1.0.7 +package require -exact testcl 1.0.8 namespace import ::testcl::* ## diff --git a/pkgIndex.tcl b/pkgIndex.tcl index ec8b66a..cfd6ddb 100644 --- a/pkgIndex.tcl +++ b/pkgIndex.tcl @@ -64,7 +64,7 @@ set sources {} foreach {f} $files { lappend sources [list source [file join $dir src $f]] } -package ifneeded testcl 1.0.7 [join $sources "\n"] +package ifneeded testcl 1.0.8 [join $sources "\n"] # Disable certain Tcl commands from iRules if { $::tcl_platform(platform) eq "java" } { diff --git a/scripts/release.md b/scripts/release.md index cfbc0fb..5d756fd 100644 --- a/scripts/release.md +++ b/scripts/release.md @@ -7,7 +7,7 @@ Mac OS X/Free BSD Tagging a new release and pushing to origin - git tag -a v1.0.7 -m 'Release 1.0.7' + git tag -a v1.0.8 -m 'Release 1.0.8' git push --tags Remove feature branches after merging diff --git a/src/assert.tcl b/src/assert.tcl index 6f80566..b526353 100644 --- a/src/assert.tcl +++ b/src/assert.tcl @@ -1,4 +1,4 @@ -package provide testcl 1.0.7 +package provide testcl 1.0.8 package require log namespace eval ::testcl { diff --git a/src/classes.tcl b/src/classes.tcl index af429ea..7708498 100644 --- a/src/classes.tcl +++ b/src/classes.tcl @@ -1,4 +1,4 @@ -package provide testcl 1.0.7 +package provide testcl 1.0.8 package require log package require cmdline @@ -148,4 +148,4 @@ proc ::testcl::class {cmd args} { donesearch {error "Not implemented yet"} } -} \ No newline at end of file +} diff --git a/src/global.tcl b/src/global.tcl index 18d17da..40bbca4 100644 --- a/src/global.tcl +++ b/src/global.tcl @@ -1,4 +1,4 @@ -package provide testcl 1.0.7 +package provide testcl 1.0.8 package require log namespace eval ::testcl { diff --git a/src/ip.tcl b/src/ip.tcl index 81062ab..e60a8ae 100644 --- a/src/ip.tcl +++ b/src/ip.tcl @@ -1,4 +1,4 @@ -package provide testcl 1.0.7 +package provide testcl 1.0.8 package require log package require ip diff --git a/src/irulehttp.tcl b/src/irulehttp.tcl index a8c93b1..f99e0ad 100644 --- a/src/irulehttp.tcl +++ b/src/irulehttp.tcl @@ -1,4 +1,4 @@ -package provide testcl 1.0.7 +package provide testcl 1.0.8 package require log package require base64 diff --git a/src/iruleuri.tcl b/src/iruleuri.tcl index a06eb65..451c6c5 100644 --- a/src/iruleuri.tcl +++ b/src/iruleuri.tcl @@ -1,4 +1,4 @@ -package provide testcl 1.0.7 +package provide testcl 1.0.8 package require log package require base64 diff --git a/src/it.tcl b/src/it.tcl index 4e994e4..8f843a8 100644 --- a/src/it.tcl +++ b/src/it.tcl @@ -1,4 +1,4 @@ -package provide testcl 1.0.7 +package provide testcl 1.0.8 package require log namespace eval ::testcl { diff --git a/src/on.tcl b/src/on.tcl index 6d88161..a5650b1 100644 --- a/src/on.tcl +++ b/src/on.tcl @@ -1,4 +1,4 @@ -package provide testcl 1.0.7 +package provide testcl 1.0.8 package require log namespace eval ::testcl { diff --git a/src/onirule.tcl b/src/onirule.tcl index 82b7534..257dab6 100644 --- a/src/onirule.tcl +++ b/src/onirule.tcl @@ -1,4 +1,4 @@ -package provide testcl 1.0.7 +package provide testcl 1.0.8 package require log namespace eval ::testcl {