Skip to content

Commit

Permalink
Release v1.1.2
Browse files Browse the repository at this point in the history
Better unit tests.
Pretty error messages.
  • Loading branch information
FSMaxB committed Mar 24, 2016
1 parent a705f79 commit 8d47205
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions liluat-1.1.1-1.rockspec → liluat-1.1.2-1.rockspec
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package = "liluat"
version = "1.1.1-1"
version = "1.1.2-1"

source = {
url = "git://github.com/FSMaxB/liluat",
tag = "v1.1.1"
tag = "v1.1.2"
}

description = {
Expand Down
2 changes: 1 addition & 1 deletion liluat.lua
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ local liluat = {

-- print the current version
liluat.version = function ()
return "1.1.1"
return "1.1.2"
end

-- returns a string containing the fist line until the last line
Expand Down
2 changes: 1 addition & 1 deletion spec/liluat_spec.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1315,7 +1315,7 @@ __liluat_output_function("more text")]]

describe("version", function ()
it("should return the current version number", function ()
assert.equal("1.1.1", liluat.version())
assert.equal("1.1.2", liluat.version())
end)
end)
end)

0 comments on commit 8d47205

Please sign in to comment.