Skip to content

Commit 08732ae

Browse files
committed
Release v0.5.2
1 parent 76b4cfc commit 08732ae

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

bint.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--[[--
2-
lua-bint - v0.5.1 - 26/Jun/2023
2+
lua-bint - v0.5.2 - 30/Oct/2024
33
Eduardo Bart - [email protected]
44
https://github.com/edubart/lua-bint
55

docs/index.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -45,15 +45,12 @@ <h2>Modules</h2>
4545
<div id="content">
4646

4747
<h1>Module <code>bint</code></h1>
48-
<p>lua-bint - v0.5.1 - 26/Jun/2023
48+
<p>lua-bint - v0.5.2 - 30/Oct/2024
4949
Eduardo Bart - [email protected]
5050
https://github.com/edubart/lua-bint</p>
5151

5252
<p>Small portable arbitrary-precision integer arithmetic library in pure Lua for
5353
computing with large integers.</p>
54-
<p>
55-
56-
5754
<p>Different from most arbitrary-precision integer libraries in pure Lua out there this one
5855
uses an array of lua integers as underlying data-type in its implementation instead of
5956
using strings or large tables, this make it efficient for working with fixed width integers
@@ -148,7 +145,10 @@ <h2>Precautions</h2>
148145
<li>For doing power operation preserving integers use the <a href="index.html#ipow">bint.ipow</a> function.</li>
149146
<li>Configure the proper integer size you intend to work with, otherwise large integers may wrap around.</li>
150147
</ul>
151-
</p>
148+
149+
<h2>License</h2>
150+
151+
<p>MIT, see end of file.</p>
152152

153153

154154
<h2><a href="#Functions">Functions</a></h2>
@@ -2653,7 +2653,7 @@ <h2 class="section-header "><a name="Fields"></a>Fields</h2>
26532653
</div> <!-- id="main" -->
26542654
<div id="about">
26552655
<i>generated by <a href="http://github.com/lunarmodules/LDoc">LDoc 1.5.0</a></i>
2656-
<i style="float:right;">Last updated 2023-06-26 09:09:48 </i>
2656+
<i style="float:right;">Last updated 2024-10-30 08:39:35 </i>
26572657
</div> <!-- id="about" -->
26582658
</div> <!-- id="container" -->
26592659
</body>

rockspecs/bint-0.5.1-1.rockspec renamed to rockspecs/bint-0.5.2-1.rockspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package = "bint"
2-
version = "0.5.1-1"
2+
version = "0.5.2-1"
33
source = {
44
url = "git://github.com/edubart/lua-bint.git",
5-
tag = "v0.5.1"
5+
tag = "v0.5.2"
66
}
77
description = {
88
summary = "Arbitrary precision integer arithmetic library in pure Lua",

0 commit comments

Comments
 (0)