Skip to content

Commit

Permalink
Up version to 1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wqferr committed Sep 10, 2021
1 parent c4ef3cd commit 513506c
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 44 deletions.
4 changes: 2 additions & 2 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ <h4>Iterable</h4>
<h3>Info:</h3>
<ul>
<li><strong>Copyright</strong>: 2021</li>
<li><strong>Release</strong>: 1.3.0</li>
<li><strong>Release</strong>: 1.4.0</li>
<li><strong>License</strong>: MIT</li>
<li><strong>Author</strong>: William Quelho Ferreira</li>
</ul>
Expand Down Expand Up @@ -2034,7 +2034,7 @@ <h3>Returns:</h3>
</div> <!-- id="main" -->
<div id="about">
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc 1.4.6</a></i>
<i style="float:right;">Last updated 2021-09-09 22:20:05 </i>
<i style="float:right;">Last updated 2021-09-09 23:22:06 </i>
</div> <!-- id="about" -->
</div> <!-- id="container" -->
</body>
Expand Down
80 changes: 40 additions & 40 deletions functional-1.3-0.rockspec → functional-1.4-0.rockspec
Original file line number Diff line number Diff line change
@@ -1,40 +1,40 @@
package = "functional"
version = "1.3-0"
source = {
url = "git://github.com/wqferr/functional",
tag = "v1.3.0"
}

description = {
summary = "Functional programming utilities implemented in pure lua.",
detailed = [[
This module seeks to provide some utility functions
and structures which are too verbose in vanilla lua,
in particular with regards to iteration and inline
function definition.
]],
homepage = "https://wqferr.github.io/functional/",
license = "MIT"
}

dependencies = {
"lua >= 5.1, < 5.5"
}

build = {
type = "make",
copy_directories = {"docs"},
build_variables = {
-- This is just here so luarocks doesn't complain I didn't pass it.
-- It's not used at all, the Makefile just copies the files over.
CFLAGS="$(CFLAGS)",
},
install_variables = {
SOURCES="functional.lua functional.d.tl",
INST_PREFIX="$(PREFIX)",
INST_BINDIR="$(BINDIR)",
INST_LIBDIR="$(LIBDIR)",
INST_LUADIR="$(LUADIR)",
INST_CONFDIR="$(CONFDIR)",
},
}
package = "functional"
version = "1.4-0"
source = {
url = "git://github.com/wqferr/functional",
tag = "v1.4.0"
}

description = {
summary = "Functional programming utilities implemented in pure lua.",
detailed = [[
This module seeks to provide some utility functions
and structures which are too verbose in vanilla lua,
in particular with regards to iteration and inline
function definition.
]],
homepage = "https://wqferr.github.io/functional/",
license = "MIT"
}

dependencies = {
"lua >= 5.1, < 5.5"
}

build = {
type = "make",
copy_directories = {"docs"},
build_variables = {
-- This is just here so luarocks doesn't complain I didn't pass it.
-- It's not used at all, the Makefile just copies the files over.
CFLAGS="$(CFLAGS)",
},
install_variables = {
SOURCES="functional.lua functional.d.tl",
INST_PREFIX="$(PREFIX)",
INST_BINDIR="$(BINDIR)",
INST_LIBDIR="$(LIBDIR)",
INST_LUADIR="$(LUADIR)",
INST_CONFDIR="$(CONFDIR)",
},
}
4 changes: 2 additions & 2 deletions functional.lua
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
-- </ul></p>
-- @module functional
-- @alias M
-- @release 1.3.0
-- @release 1.4.0
-- @author William Quelho Ferreira
-- @copyright 2021
-- @license MIT
Expand All @@ -49,7 +49,7 @@ local iter_meta = {}
local unpack = table.unpack or unpack

--- Module version.
M._VERSION = "1.3.0"
M._VERSION = "1.4.0"

--- Iterate over the given <code>iterable</code>.
-- <p>If <code>iterable</code> is an array, create an Iterator instance
Expand Down

0 comments on commit 513506c

Please sign in to comment.