Skip to content

Commit 6d290d9

Browse files
committed
Update version number to 0.6
1 parent 647f636 commit 6d290d9

File tree

7 files changed

+29
-25
lines changed

7 files changed

+29
-25
lines changed

ANNOUNCE

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,18 @@
11

2-
Lunit Release 0.5
2+
Lunit Release 0.6
33
===================
44

5-
Lunit is a unit testing framework for lua, written in lua.
5+
Lunitx is a unit testing framework for lua, written in lua,
6+
based heavily on Lunit 0.5, but modified to work with Lua 5.2
67

7-
Lunit provides 27 assert functions, and a few misc functions
8+
Lunitx provides 27 assert functions, and a few misc functions
89
for usage in an easy unit testing framework.
910

1011
Lunit comes with a test suite to test itself. The testsuite
1112
consists of approximately 710 assertions.
1213

1314
Lunit is licensed under the MIT license.
1415

15-
Lunit can downloaded from http://www.mroth.net/lunit/
16+
The original Lunit can downloaded from http://www.mroth.net/lunit/
17+
18+
The eXtended Lunit can downloaded from https://github.com/dcurrie/lunit

CHANGES

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,14 @@
1-
Next release:
1+
Release 0.6:
22

33
Lunit no longer depends on lunit.sh. The script moved to the
44
extra-directory.
5+
See README.lunitx for Sam Roberts's enhancments:
6+
- fixed the -t switch for selecting only a single test
7+
- example files for using Lunit without the wrapper script
8+
Support for Lua 5.2 using lunit.module.
9+
Tests added and examples modified for lunit.module
10+
Bug fixes by Reuben Thomas, Joshua Haberman, and Ildar Mulyukov
11+
Debian packaging by Ricky Cormier
512

613
Release 0.5:
714

README

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,7 @@
1-
Extended lunit, see README.lunitx.
2-
3-
--
4-
5-
This is lunit Version 0.5.
1+
This is lunitx Version 0.6, an extended version of Lunit
2+
for Lua 5.2.
63

74
Lunit is a unit testing framework for lua.
85

96
To learn more about lunit take a look in ANNOUNCE
10-
and look in DOCUMENTATION and check example.lua.
11-
12-
If you have suggestions, questions or feature request please
13-
feel free to contact me.
14-
15-
16-
Michael Roth <mroth@nessie.de>
7+
and look in DOCUMENTATION and check lunitx/ example files

extra/lunit.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#! /bin/sh
22

3-
# This file is part of lunit 0.5.
3+
# This file is part of lunit 0.6.
44
#
55
# For Details about lunit look at: http://www.mroth.net/lunit/
66
#
@@ -45,7 +45,7 @@ while true ; do
4545
case "$1" in
4646
-h|--help)
4747
cat <<EOT
48-
lunit 0.5
48+
lunit 0.6
4949
Copyright (c) 2004-2009 Michael Roth <mroth@nessie.de>
5050
This program comes WITHOUT WARRANTY OF ANY KIND.
5151
@@ -68,7 +68,7 @@ EOT
6868
exit ;;
6969

7070
--version)
71-
echo "lunit 0.5 Copyright 2004-2009 Michael Roth <mroth@nessie.de>"
71+
echo "lunit 0.6 Copyright 2004-2009 Michael Roth <mroth@nessie.de>"
7272
exit ;;
7373

7474
-i|--interpreter)

lua/lunit.lua

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
--[[--------------------------------------------------------------------------
22
3-
This file is part of lunit 0.5.
3+
This file is part of lunit 0.6.
44
55
For Details about lunit look at: http://www.mroth.net/lunit/
6+
For Details about lunitx look at: https://github.com/dcurrie/lunit
67
78
Author: Michael Roth <mroth@nessie.de>
89
910
Copyright (c) 2004, 2006-2010 Michael Roth <mroth@nessie.de>
11+
Copyright (c) 2011-2012 Doug Currie
1012
1113
Permission is hereby granted, free of charge, to any person
1214
obtaining a copy of this software and associated documentation
@@ -687,8 +689,9 @@ function main(argv)
687689
testpatterns[#testpatterns+1] = arg
688690
elseif arg == "--help" or arg == "-h" then
689691
print[[
690-
lunit 0.5
691-
Copyright (c) 2004-2009 Michael Roth <mroth@nessie.de>
692+
lunit 0.6
693+
Copyright (c) 2004-2010 Michael Roth <mroth@nessie.de>
694+
Copyright (c) 2011-2012 Doug Currie
692695
This program comes WITHOUT WARRANTY OF ANY KIND.
693696
694697
Usage: lua test [OPTIONS] [--] scripts

lua/lunit/console.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
--[[--------------------------------------------------------------------------
33
4-
This file is part of lunit 0.5.
4+
This file is part of lunit 0.6.
55
66
For Details about lunit look at: http://www.mroth.net/lunit/
77

lua/lunit/selftest.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
--[[--------------------------------------------------------------------------
33
4-
This file is part of lunit 0.5.
4+
This file is part of lunit 0.6.
55
66
For Details about lunit look at: http://www.mroth.net/lunit/
77

0 commit comments

Comments
 (0)