Skip to content

Commit f1c31ae

Browse files
author
Pavel Petroshenko
committed
Cleanup the versions.
1 parent d769d9e commit f1c31ae

File tree

4 files changed

+8
-12
lines changed

4 files changed

+8
-12
lines changed

Diff for: index.nut

+2-9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#require "promise.class.nut:3.0.1"
2-
#require "JSONEncoder.class.nut:2.0.0"
31
// MIT License
42
//
53
// Copyright 2016-2017 Electric Imp
@@ -24,13 +22,8 @@
2422
// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
2523
// OTHER DEALINGS IN THE SOFTWARE.
2624

27-
/**
28-
* impUnit Test Framework
29-
*
30-
* @author Mikhail Yurasov <mikhail@electricimp.com>
31-
* @version 1.0.0
32-
* @package ImpUnit
33-
*/
25+
#require "promise.class.nut:3.0.1"
26+
#require "JSONEncoder.class.nut:2.0.0"
3427

3528
// impUnit module
3629
function __module_impUnit() {

Diff for: src/ImpUnit.nut

+5
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,8 @@
2525
@include __PATH__+"/Message.nut"
2626
@include __PATH__+"/ImpTestCase.nut"
2727
@include __PATH__+"/TestRunner.nut"
28+
29+
class ImpUnit {
30+
static VERSION = "1.2.0";
31+
}
32+

Diff for: src/Message.nut

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ local ImpUnitMessageTypes = {
4444
*/
4545
local ImpUnitMessage = class {
4646

47-
static version = [0, 5, 0];
47+
static VERSION = "0.5.0";
4848

4949
type = "";
5050
message = "";

Diff for: src/TestRunner.nut

-2
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,6 @@
3232
*/
3333
local ImpUnitRunner = class {
3434

35-
static version = [0, 6, 0];
36-
3735
// options
3836
timeout = 2;
3937
readableOutput = true;

0 commit comments

Comments
 (0)