Skip to content

Commit

Permalink
Release v1.1.1, bugfix release
Browse files Browse the repository at this point in the history
  • Loading branch information
FSMaxB committed Mar 11, 2016
1 parent 7d154ac commit 09bfaea
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.0-1.rockspec → liluat-1.1.1-1.rockspec
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package = "liluat"
version = "1.1.0-1"
version = "1.1.1-1"

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

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.0"
return "1.1.1"
end

-- escape a string for use in lua patterns
Expand Down
2 changes: 1 addition & 1 deletion spec/liluat_spec.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1171,7 +1171,7 @@ __liluat_output_function("more text")]]

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

0 comments on commit 09bfaea

Please sign in to comment.