From 3b9252cd89d5e506e513c92c33940d4e759d6e65 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20Magnus=20Landr=C3=B8?= Date: Fri, 23 Aug 2013 13:36:42 +0200 Subject: [PATCH] Version bumped to 1.0.2 --- README.md | 8 ++++---- examples/example_irule_advanced.tcl | 2 +- examples/example_irule_headers.tcl | 2 +- examples/example_irule_simple.tcl | 2 +- pkgIndex.tcl | 2 +- src/assert.tcl | 2 +- src/irulehttp.tcl | 2 +- src/it.tcl | 2 +- src/on.tcl | 2 +- src/onirule.tcl | 2 +- 10 files changed, 13 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index acc79da..24642ba 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ Let's say you want to test the following simple iRule found in *simple_irule.tcl Now, create a file called *test_simple_irule.tcl* containing the following lines: - package require -exact testcl 1.0.1 + package require -exact testcl 1.0.2 namespace import ::testcl::* # Comment in to enable logging @@ -155,7 +155,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: - package require -exact testcl 1.0.1 + package require -exact testcl 1.0.2 namespace import ::testcl::* # Comment in to enable logging @@ -232,7 +232,7 @@ Let's have a look at a more advanced iRule (advanced_irule.tcl): The specs for this iRule would look like this: - package require -exact testcl 1.0.1 + package require -exact testcl 1.0.2 namespace import ::testcl::* # Comment out to suppress logging @@ -344,7 +344,7 @@ Let's have a look at a another iRule (headers_irule.tcl): The example specs for this iRule would look like this: - package require -exact testcl 1.0.1 + package require -exact testcl 1.0.2 namespace import ::testcl::* # Comment out to suppress logging diff --git a/examples/example_irule_advanced.tcl b/examples/example_irule_advanced.tcl index e6e6147..2560a1c 100644 --- a/examples/example_irule_advanced.tcl +++ b/examples/example_irule_advanced.tcl @@ -1,4 +1,4 @@ -package require -exact testcl 1.0.1 +package require -exact testcl 1.0.2 namespace import ::testcl::* ## diff --git a/examples/example_irule_headers.tcl b/examples/example_irule_headers.tcl index 314b990..3a8187c 100644 --- a/examples/example_irule_headers.tcl +++ b/examples/example_irule_headers.tcl @@ -1,4 +1,4 @@ -package require -exact testcl 1.0.1 +package require -exact testcl 1.0.2 namespace import ::testcl::* ## diff --git a/examples/example_irule_simple.tcl b/examples/example_irule_simple.tcl index d9ef1e6..ba5a8ce 100644 --- a/examples/example_irule_simple.tcl +++ b/examples/example_irule_simple.tcl @@ -1,4 +1,4 @@ -package require -exact testcl 1.0.1 +package require -exact testcl 1.0.2 namespace import ::testcl::* ## diff --git a/pkgIndex.tcl b/pkgIndex.tcl index 99ca7fd..f512d07 100644 --- a/pkgIndex.tcl +++ b/pkgIndex.tcl @@ -13,7 +13,7 @@ if {[namespace exists ::testcl]} { return } -package ifneeded testcl 1.0.1 [list source [file join $dir src/assert.tcl]]\n[list source [file join $dir src/it.tcl]]\n[list source [file join $dir src/on.tcl]]\n[list source [file join $dir src/onirule.tcl]]\n[list source [file join $dir src/irulehttp.tcl]] +package ifneeded testcl 1.0.2 [list source [file join $dir src/assert.tcl]]\n[list source [file join $dir src/it.tcl]]\n[list source [file join $dir src/on.tcl]]\n[list source [file join $dir src/onirule.tcl]]\n[list source [file join $dir src/irulehttp.tcl]] # Disable certain Tcl commands from iRules source [file join $dir src/disabled_commands.tcl] diff --git a/src/assert.tcl b/src/assert.tcl index 3d826f3..7206e55 100644 --- a/src/assert.tcl +++ b/src/assert.tcl @@ -1,4 +1,4 @@ -package provide testcl 1.0.1 +package provide testcl 1.0.2 package require log namespace eval ::testcl { diff --git a/src/irulehttp.tcl b/src/irulehttp.tcl index bb151f5..3d128f9 100644 --- a/src/irulehttp.tcl +++ b/src/irulehttp.tcl @@ -1,4 +1,4 @@ -package provide testcl 1.0.1 +package provide testcl 1.0.2 package require log package require base64 diff --git a/src/it.tcl b/src/it.tcl index c101b03..e964008 100644 --- a/src/it.tcl +++ b/src/it.tcl @@ -1,4 +1,4 @@ -package provide testcl 1.0.1 +package provide testcl 1.0.2 package require log namespace eval ::testcl { diff --git a/src/on.tcl b/src/on.tcl index dd66852..a7cce92 100644 --- a/src/on.tcl +++ b/src/on.tcl @@ -1,4 +1,4 @@ -package provide testcl 1.0.1 +package provide testcl 1.0.2 package require log namespace eval ::testcl { diff --git a/src/onirule.tcl b/src/onirule.tcl index 53cceff..49206bc 100644 --- a/src/onirule.tcl +++ b/src/onirule.tcl @@ -1,4 +1,4 @@ -package provide testcl 1.0.1 +package provide testcl 1.0.2 package require log namespace eval ::testcl {