Skip to content

Commit

Permalink
README,HISTORY,rockspec: version 0.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
agladysh committed Sep 16, 2013
1 parent e979af5 commit 324f85c
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 1 deletion.
6 changes: 6 additions & 0 deletions HISTORY
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
Version 0.9.1 (2013-09-16)
==========================

* Added a tool to pack files (e.g. Lua scripts) to JavaScript bundle files,
so they'll be available for lua5.1.js code. See README for more details.

Version 0.9.0 (2013-09-16)
==========================

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ See file `COPYRIGHT` for the license.
Project status:
---------------

Current version v0.9.0 is a community preview version.
Current version v0.9.1 is a community preview version.

This project is in early stages of its development. Early adopters
are welcome. Production users should probably wait for a next release
Expand Down
29 changes: 29 additions & 0 deletions rockspec/lua5.1.js-file-packer-0.9.1-1.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
package = "lua5.1.js-file-packer"
version = "0.9.1"
source =
{
url = "git://github.com/logiceditor-com/lua5.1.js-file-packer";
branch = "v0.9.1";
}
description =
{
summary = "A simple file packer tool for lua5.1.js";
homepage = "https://github.com/logiceditor-com/lua5.1.js";
license = "MIT/X11";
maintainer = "LogicEditor Team <[email protected]>";
}
dependencies =
{
"lua == 5.1";
}
build =
{
type = "none";
install =
{
bin =
{
"bin/lua5.1.js-file-packer";
}
}
}

0 comments on commit 324f85c

Please sign in to comment.