Skip to content

Commit

Permalink
Release v0.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
edubart committed Oct 30, 2024
1 parent 76b4cfc commit 08732ae
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion bint.lua
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
--[[--
lua-bint - v0.5.1 - 26/Jun/2023
lua-bint - v0.5.2 - 30/Oct/2024
Eduardo Bart - edub4rt@gmail.com
https://github.com/edubart/lua-bint
Expand Down
12 changes: 6 additions & 6 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -45,15 +45,12 @@ <h2>Modules</h2>
<div id="content">

<h1>Module <code>bint</code></h1>
<p>lua-bint - v0.5.1 - 26/Jun/2023
<p>lua-bint - v0.5.2 - 30/Oct/2024
Eduardo Bart - edub4rt@gmail.com
https://github.com/edubart/lua-bint</p>

<p>Small portable arbitrary-precision integer arithmetic library in pure Lua for
computing with large integers.</p>
<p>


<p>Different from most arbitrary-precision integer libraries in pure Lua out there this one
uses an array of lua integers as underlying data-type in its implementation instead of
using strings or large tables, this make it efficient for working with fixed width integers
Expand Down Expand Up @@ -148,7 +145,10 @@ <h2>Precautions</h2>
<li>For doing power operation preserving integers use the <a href="index.html#ipow">bint.ipow</a> function.</li>
<li>Configure the proper integer size you intend to work with, otherwise large integers may wrap around.</li>
</ul>
</p>

<h2>License</h2>

<p>MIT, see end of file.</p>


<h2><a href="#Functions">Functions</a></h2>
Expand Down Expand Up @@ -2653,7 +2653,7 @@ <h2 class="section-header "><a name="Fields"></a>Fields</h2>
</div> <!-- id="main" -->
<div id="about">
<i>generated by <a href="http://github.com/lunarmodules/LDoc">LDoc 1.5.0</a></i>
<i style="float:right;">Last updated 2023-06-26 09:09:48 </i>
<i style="float:right;">Last updated 2024-10-30 08:39:35 </i>
</div> <!-- id="about" -->
</div> <!-- id="container" -->
</body>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package = "bint"
version = "0.5.1-1"
version = "0.5.2-1"
source = {
url = "git://github.com/edubart/lua-bint.git",
tag = "v0.5.1"
tag = "v0.5.2"
}
description = {
summary = "Arbitrary precision integer arithmetic library in pure Lua",
Expand Down

0 comments on commit 08732ae

Please sign in to comment.