Skip to content

Commit

Permalink
Update to v1.1.1-1
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter Aronoff committed Dec 6, 2015
1 parent 3df02ac commit d207c94
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 0 deletions.
7 changes: 7 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,13 @@
[luacov-coveralls]: https://github.com/moteus/luacov-coveralls
[coveralls]: https://coveralls.io

## *1.1.1-1* (December 5, 2015)

+ Test coverage stats are now thanks to [codecov][codecov].
+ Latest stable Lua in the 5.3 series is 5.3.2, so we test against that now.

[codecov]: https://codecov.io

Would you rather view the [documentation][d]?

[d]: /README.md
Expand Down
8 changes: 8 additions & 0 deletions doc/changes.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,14 @@ <h2><em>1.1.0-1</em> (July 19, 2015)</h2>
</ul>


<h2><em>1.1.1-1</em> (December 5, 2015)</h2>

<ul>
<li>Test coverage stats are now thanks to <a href="https://codecov.io">codecov</a>.</li>
<li>Latest stable Lua in the 5.3 series is 5.3.2, so we test against that now.</li>
</ul>


<p>Would you rather view the <a href="index.html">documentation</a>?</p>

<hr />
Expand Down
24 changes: 24 additions & 0 deletions split-1.1.1-1.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
package = 'split'
version = '1.1.1-1'
source = {
url = 'https://bitbucket.org/telemachus/split/downloads/split-v1.1.1-1.tar.gz',
dir = 'split'
}
description = {
summary = 'String split function and iterator for Lua',
detailed = [[
A string split function and iterator for Lua since the string standard
library doesn't come with one.
]],
homepage = 'https://bitbucket.org/telemachus/split',
license = 'BSD 3-Clause',
maintainer = 'Peter Aronoff <[email protected]>'
}
dependencies = { 'lua >= 5.1' }
build = {
type = 'builtin',
modules = {
split = 'src/split.lua',
},
copy_directories = { 'doc' }
}

0 comments on commit d207c94

Please sign in to comment.