Skip to content

Commit

Permalink
Preparing 1.0.6 release
Browse files Browse the repository at this point in the history
  • Loading branch information
landro committed Sep 2, 2014
1 parent ba85814 commit 9520a16
Show file tree
Hide file tree
Showing 12 changed files with 16 additions and 16 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ rule simple {
Now, create a file called *test_simple_irule.tcl* containing the following lines:

```tcl
package require -exact testcl 1.0.5
package require -exact testcl 1.0.6
namespace import ::testcl::*
# Comment in to enable logging
Expand Down Expand Up @@ -106,7 +106,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.5
export TCLLIBPATH=whereever/TesTcl-1.0.6

In order to run this example, type in the following at the command-line:

Expand Down Expand Up @@ -173,7 +173,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.5
package require -exact testcl 1.0.6
namespace import ::testcl::*
# Comment in to enable logging
Expand Down Expand Up @@ -254,7 +254,7 @@ rule advanced {
The specs for this iRule would look like this:

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

```tcl
package require -exact testcl 1.0.5
package require -exact testcl 1.0.6
namespace import ::testcl::*
# Comment out to suppress logging
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.5
package require -exact testcl 1.0.6
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.5
package require -exact testcl 1.0.6
namespace import ::testcl::*

##
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.5
package require -exact testcl 1.0.6
namespace import ::testcl::*

##
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.5
package require -exact testcl 1.0.6
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 @@ -56,7 +56,7 @@ if { $::tcl_platform(platform) eq "java" } {
puts stderr "WARNING"
}

package ifneeded testcl 1.0.5 [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.6 [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
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,7 +7,7 @@ Mac OS X/Free BSD

Tagging a new release and pushing to origin

git tag -a v1.0.5 -m 'Release 1.0.5'
git tag -a v1.0.6 -m 'Release 1.0.6'
git push --tags

Remove feature branches after merging
Expand Down
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.5
package provide testcl 1.0.6
package require log

namespace eval ::testcl {
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.5
package provide testcl 1.0.6
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.5
package provide testcl 1.0.6
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.5
package provide testcl 1.0.6
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.5
package provide testcl 1.0.6
package require log

namespace eval ::testcl {
Expand Down

0 comments on commit 9520a16

Please sign in to comment.