Skip to content

Commit

Permalink
bumped versions and rebuilt docs
Browse files Browse the repository at this point in the history
  • Loading branch information
logicalmechanism committed Dec 19, 2023
1 parent ab54dcf commit 6f0575c
Show file tree
Hide file tree
Showing 19 changed files with 87 additions and 85 deletions.
2 changes: 1 addition & 1 deletion aiken.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name = "aiken-lang/assist"
version = "0.3.3"
version = "0.3.4"
license = "Apache-2.0"
description = "Aiken Assist Library"

Expand Down
8 changes: 4 additions & 4 deletions docs/assist/addresses.html
Original file line number Diff line number Diff line change
Expand Up @@ -120,13 +120,13 @@
<h2>
<a href="../">assist</a>
<span id="project-version">
<span>v0.3.3 </span>
<span>v0.3.4 </span>
</span>
<script>
"use strict";

if ("undefined" !== typeof versionNodes) {
const currentVersion = "v0.3.3";
const currentVersion = "v0.3.4";
if (! versionNodes.find(element => element.version === currentVersion)) {
versionNodes.unshift({ version: currentVersion, url: "#" });
}
Expand Down Expand Up @@ -442,8 +442,8 @@ <h2 id="create_script_address"><pre class="hljs language-aiken">create_script_ad
});
</script>
<script src="../js/lunr.min.js?v=1.0.21-alpha"></script>
<script src="../js/index.js?v=1702934185"></script>
<script src="../js/index.js?v=1702994576"></script>
<!-- Load the search index using JSONP to avoid CORS issues -->
<script src="../search-data.js?v=1702934185"></script>
<script src="../search-data.js?v=1702994576"></script>
</body>
</html>
18 changes: 9 additions & 9 deletions docs/assist/boolean.html
Original file line number Diff line number Diff line change
Expand Up @@ -120,13 +120,13 @@
<h2>
<a href="../">assist</a>
<span id="project-version">
<span>v0.3.3 </span>
<span>v0.3.4 </span>
</span>
<script>
"use strict";

if ("undefined" !== typeof versionNodes) {
const currentVersion = "v0.3.3";
const currentVersion = "v0.3.4";
if (! versionNodes.find(element => element.version === currentVersion)) {
versionNodes.unshift({ version: currentVersion, url: "#" });
}
Expand Down Expand Up @@ -384,7 +384,7 @@ <h2 id="nand_"><pre class="hljs language-aiken">nand_(x: Int, y: Int) -&gt; Int<
-->

</div>
<div class="rendered-markdown"><p>Performs a logical NAND operation on two integer values.
<div class="rendered-markdown"><p>Performs a logical <code>NAND</code> operation on two integer values.
Returns 1 if at least one input is 0, otherwise returns 0.</p>
<pre><code class="language-aiken">boolean.nand_(1, 1)
</code></pre>
Expand All @@ -402,7 +402,7 @@ <h2 id="nor_"><pre class="hljs language-aiken">nor_(x: Int, y: Int) -&gt; Int</p
-->

</div>
<div class="rendered-markdown"><p>Performs a logical NOR operation on two integer values.
<div class="rendered-markdown"><p>Performs a logical <code>NOR</code> operation on two integer values.
Returns 1 if both inputs are 0, otherwise returns 0.</p>
<pre><code class="language-aiken">boolean.nor_(0, 0)
</code></pre>
Expand All @@ -420,7 +420,7 @@ <h2 id="not_"><pre class="hljs language-aiken">not_(x: Int) -&gt; Int</pre></h2>
-->

</div>
<div class="rendered-markdown"><p>Performs a logical NOT operation on an integer value.
<div class="rendered-markdown"><p>Performs a logical <code>NOT</code> operation on an integer value.
Expects the input as binary (0 or 1) and returns the inverse (1 becomes 0, 0 becomes 1).</p>
<pre><code class="language-aiken">boolean.not_(1)
</code></pre>
Expand Down Expand Up @@ -456,7 +456,7 @@ <h2 id="xnor_"><pre class="hljs language-aiken">xnor_(x: Int, y: Int) -&gt; Int<
-->

</div>
<div class="rendered-markdown"><p>Performs a logical XNOR operation on two integer values.
<div class="rendered-markdown"><p>Performs a logical <code>XNOR</code> operation on two integer values.
Returns 1 if the inputs are the same, otherwise returns 0.</p>
<pre><code class="language-aiken">boolean.xnor_(1, 1)
</code></pre>
Expand All @@ -474,7 +474,7 @@ <h2 id="xor_"><pre class="hljs language-aiken">xor_(x: Int, y: Int) -&gt; Int</p
-->

</div>
<div class="rendered-markdown"><p>Performs a logical XOR operation on two integer values.
<div class="rendered-markdown"><p>Performs a logical <code>XOR</code> operation on two integer values.
Expects both inputs as binary (0 or 1) and returns 1 if the inputs are different, otherwise returns 0.</p>
<pre><code class="language-aiken">boolean.xor_(0, 1)
</code></pre>
Expand Down Expand Up @@ -554,8 +554,8 @@ <h2 id="xor_"><pre class="hljs language-aiken">xor_(x: Int, y: Int) -&gt; Int</p
});
</script>
<script src="../js/lunr.min.js?v=1.0.21-alpha"></script>
<script src="../js/index.js?v=1702934185"></script>
<script src="../js/index.js?v=1702994576"></script>
<!-- Load the search index using JSONP to avoid CORS issues -->
<script src="../search-data.js?v=1702934185"></script>
<script src="../search-data.js?v=1702994576"></script>
</body>
</html>
10 changes: 6 additions & 4 deletions docs/assist/certificates.html
Original file line number Diff line number Diff line change
Expand Up @@ -120,13 +120,13 @@
<h2>
<a href="../">assist</a>
<span id="project-version">
<span>v0.3.3 </span>
<span>v0.3.4 </span>
</span>
<script>
"use strict";

if ("undefined" !== typeof versionNodes) {
const currentVersion = "v0.3.3";
const currentVersion = "v0.3.4";
if (! versionNodes.find(element => element.version === currentVersion)) {
versionNodes.unshift({ version: currentVersion, url: "#" });
}
Expand Down Expand Up @@ -309,6 +309,8 @@ <h2>Functions</h2>
<h1 id="module-name" class="module-name">
<a href="#module-name">assist/certificates</a>
</h1>
<p>This module incorporates code for generating valid certificates,
ensuring their correctness. </p>



Expand Down Expand Up @@ -416,8 +418,8 @@ <h2 id="create_credential_delegation"><pre class="hljs language-aiken">create_cr
});
</script>
<script src="../js/lunr.min.js?v=1.0.21-alpha"></script>
<script src="../js/index.js?v=1702934185"></script>
<script src="../js/index.js?v=1702994576"></script>
<!-- Load the search index using JSONP to avoid CORS issues -->
<script src="../search-data.js?v=1702934185"></script>
<script src="../search-data.js?v=1702994576"></script>
</body>
</html>
22 changes: 11 additions & 11 deletions docs/assist/circuits.html
Original file line number Diff line number Diff line change
Expand Up @@ -120,13 +120,13 @@
<h2>
<a href="../">assist</a>
<span id="project-version">
<span>v0.3.3 </span>
<span>v0.3.4 </span>
</span>
<script>
"use strict";

if ("undefined" !== typeof versionNodes) {
const currentVersion = "v0.3.3";
const currentVersion = "v0.3.4";
if (! versionNodes.find(element => element.version === currentVersion)) {
versionNodes.unshift({ version: currentVersion, url: "#" });
}
Expand Down Expand Up @@ -348,7 +348,7 @@ <h2 id="and_"><pre class="hljs language-aiken">and_(x: Int, y: Int, p: Int) -&gt
-->

</div>
<div class="rendered-markdown"><p>Performs a logical AND operation on two integer values within an arithmetic circuit.</p>
<div class="rendered-markdown"><p>Performs a logical <code>AND</code> operation on two integer values within an arithmetic circuit.</p>
<pre><code class="language-aiken">circuits.and_(1, 1, p)
</code></pre>
</div>
Expand Down Expand Up @@ -382,7 +382,7 @@ <h2 id="nand_"><pre class="hljs language-aiken">nand_(x: Int, y: Int, p: Int) -&
-->

</div>
<div class="rendered-markdown"><p>Performs a logical NAND operation on two integer values within an arithmetic circuit.</p>
<div class="rendered-markdown"><p>Performs a logical <code>NAND</code> operation on two integer values within an arithmetic circuit.</p>
<pre><code class="language-aiken">circuits.nand_(1, 1, p)
</code></pre>
</div>
Expand All @@ -399,7 +399,7 @@ <h2 id="nor_"><pre class="hljs language-aiken">nor_(x: Int, y: Int, p: Int) -&gt
-->

</div>
<div class="rendered-markdown"><p>Performs a logical NOR operation on two integer values within an arithmetic circuit.</p>
<div class="rendered-markdown"><p>Performs a logical <code>NOR</code> operation on two integer values within an arithmetic circuit.</p>
<pre><code class="language-aiken">circuits.nor_(0, 0, p)
</code></pre>
</div>
Expand All @@ -416,7 +416,7 @@ <h2 id="not_"><pre class="hljs language-aiken">not_(x: Int, p: Int) -&gt; Int</p
-->

</div>
<div class="rendered-markdown"><p>Performs a logical NOT operation on an integer value within an arithmetic circuit.</p>
<div class="rendered-markdown"><p>Performs a logical <code>NOT</code> operation on an integer value within an arithmetic circuit.</p>
<pre><code class="language-aiken">circuits.not_(1, p)
</code></pre>
</div>
Expand All @@ -433,7 +433,7 @@ <h2 id="or_"><pre class="hljs language-aiken">or_(x: Int, y: Int, p: Int) -&gt;
-->

</div>
<div class="rendered-markdown"><p>Performs a logical OR operation on two integer values within an arithmetic circuit..</p>
<div class="rendered-markdown"><p>Performs a logical <code>OR</code> operation on two integer values within an arithmetic circuit..</p>
<pre><code class="language-aiken">circuits.or_(0, 1, p)
</code></pre>
</div>
Expand All @@ -450,7 +450,7 @@ <h2 id="xnor_"><pre class="hljs language-aiken">xnor_(x: Int, y: Int, p: Int) -&
-->

</div>
<div class="rendered-markdown"><p>Performs a logical XNOR operation on two integer values within an arithmetic circuit.</p>
<div class="rendered-markdown"><p>Performs a logical <code>XNOR</code> operation on two integer values within an arithmetic circuit.</p>
<pre><code class="language-aiken">circuits.xnor_(1, 1, p)
</code></pre>
</div>
Expand All @@ -467,7 +467,7 @@ <h2 id="xor_"><pre class="hljs language-aiken">xor_(x: Int, y: Int, p: Int) -&gt
-->

</div>
<div class="rendered-markdown"><p>Performs a logical XOR operation on two integer values within an arithmetic circuit.</p>
<div class="rendered-markdown"><p>Performs a logical <code>XOR</code> operation on two integer values within an arithmetic circuit.</p>
<pre><code class="language-aiken">circuits.xor_(0, 1, p)
</code></pre>
</div>
Expand Down Expand Up @@ -546,8 +546,8 @@ <h2 id="xor_"><pre class="hljs language-aiken">xor_(x: Int, y: Int, p: Int) -&gt
});
</script>
<script src="../js/lunr.min.js?v=1.0.21-alpha"></script>
<script src="../js/index.js?v=1702934185"></script>
<script src="../js/index.js?v=1702994576"></script>
<!-- Load the search index using JSONP to avoid CORS issues -->
<script src="../search-data.js?v=1702934185"></script>
<script src="../search-data.js?v=1702994576"></script>
</body>
</html>
8 changes: 4 additions & 4 deletions docs/assist/count.html
Original file line number Diff line number Diff line change
Expand Up @@ -120,13 +120,13 @@
<h2>
<a href="../">assist</a>
<span id="project-version">
<span>v0.3.3 </span>
<span>v0.3.4 </span>
</span>
<script>
"use strict";

if ("undefined" !== typeof versionNodes) {
const currentVersion = "v0.3.3";
const currentVersion = "v0.3.4";
if (! versionNodes.find(element => element.version === currentVersion)) {
versionNodes.unshift({ version: currentVersion, url: "#" });
}
Expand Down Expand Up @@ -474,8 +474,8 @@ <h2 id="outputs_by_datum"><pre class="hljs language-aiken">outputs_by_datum(outp
});
</script>
<script src="../js/lunr.min.js?v=1.0.21-alpha"></script>
<script src="../js/index.js?v=1702934185"></script>
<script src="../js/index.js?v=1702994576"></script>
<!-- Load the search index using JSONP to avoid CORS issues -->
<script src="../search-data.js?v=1702934185"></script>
<script src="../search-data.js?v=1702994576"></script>
</body>
</html>
10 changes: 5 additions & 5 deletions docs/assist/credentials.html
Original file line number Diff line number Diff line change
Expand Up @@ -120,13 +120,13 @@
<h2>
<a href="../">assist</a>
<span id="project-version">
<span>v0.3.3 </span>
<span>v0.3.4 </span>
</span>
<script>
"use strict";

if ("undefined" !== typeof versionNodes) {
const currentVersion = "v0.3.3";
const currentVersion = "v0.3.4";
if (! versionNodes.find(element => element.version === currentVersion)) {
versionNodes.unshift({ version: currentVersion, url: "#" });
}
Expand Down Expand Up @@ -336,7 +336,7 @@ <h2 id="create_stake_credential"><pre class="hljs language-aiken">create_stake_c
</div>
<div class="rendered-markdown"><p>Creates a stake credential from the hex encoding of a stake key.
This can be used to find the reward amount from the withdrawals
information inside the transaction of the form Dict&lt;StakeCredential, Int&gt;</p>
information inside the transaction of the form <code>Dict&lt;StakeCredential, Int&gt;</code>.</p>
<pre><code class="language-aiken">credentials.create_stake_credential(datum.contract_hash)
</code></pre>
</div>
Expand Down Expand Up @@ -415,8 +415,8 @@ <h2 id="create_stake_credential"><pre class="hljs language-aiken">create_stake_c
});
</script>
<script src="../js/lunr.min.js?v=1.0.21-alpha"></script>
<script src="../js/index.js?v=1702934185"></script>
<script src="../js/index.js?v=1702994576"></script>
<!-- Load the search index using JSONP to avoid CORS issues -->
<script src="../search-data.js?v=1702934185"></script>
<script src="../search-data.js?v=1702994576"></script>
</body>
</html>
8 changes: 4 additions & 4 deletions docs/assist/data.html
Original file line number Diff line number Diff line change
Expand Up @@ -120,13 +120,13 @@
<h2>
<a href="../">assist</a>
<span id="project-version">
<span>v0.3.3 </span>
<span>v0.3.4 </span>
</span>
<script>
"use strict";

if ("undefined" !== typeof versionNodes) {
const currentVersion = "v0.3.3";
const currentVersion = "v0.3.4";
if (! versionNodes.find(element => element.version === currentVersion)) {
versionNodes.unshift({ version: currentVersion, url: "#" });
}
Expand Down Expand Up @@ -481,8 +481,8 @@ <h2 id="output_datum_by_hash"><pre class="hljs language-aiken">output_datum_by_h
});
</script>
<script src="../js/lunr.min.js?v=1.0.21-alpha"></script>
<script src="../js/index.js?v=1702934185"></script>
<script src="../js/index.js?v=1702994576"></script>
<!-- Load the search index using JSONP to avoid CORS issues -->
<script src="../search-data.js?v=1702934185"></script>
<script src="../search-data.js?v=1702994576"></script>
</body>
</html>
8 changes: 4 additions & 4 deletions docs/assist/find.html
Original file line number Diff line number Diff line change
Expand Up @@ -120,13 +120,13 @@
<h2>
<a href="../">assist</a>
<span id="project-version">
<span>v0.3.3 </span>
<span>v0.3.4 </span>
</span>
<script>
"use strict";

if ("undefined" !== typeof versionNodes) {
const currentVersion = "v0.3.3";
const currentVersion = "v0.3.4";
if (! versionNodes.find(element => element.version === currentVersion)) {
versionNodes.unshift({ version: currentVersion, url: "#" });
}
Expand Down Expand Up @@ -633,8 +633,8 @@ <h2 id="stake_reward_by_sc"><pre class="hljs language-aiken">stake_reward_by_sc(
});
</script>
<script src="../js/lunr.min.js?v=1.0.21-alpha"></script>
<script src="../js/index.js?v=1702934185"></script>
<script src="../js/index.js?v=1702994576"></script>
<!-- Load the search index using JSONP to avoid CORS issues -->
<script src="../search-data.js?v=1702934185"></script>
<script src="../search-data.js?v=1702994576"></script>
</body>
</html>
11 changes: 5 additions & 6 deletions docs/assist/maths.html
Original file line number Diff line number Diff line change
Expand Up @@ -120,13 +120,13 @@
<h2>
<a href="../">assist</a>
<span id="project-version">
<span>v0.3.3 </span>
<span>v0.3.4 </span>
</span>
<script>
"use strict";

if ("undefined" !== typeof versionNodes) {
const currentVersion = "v0.3.3";
const currentVersion = "v0.3.4";
if (! versionNodes.find(element => element.version === currentVersion)) {
versionNodes.unshift({ version: currentVersion, url: "#" });
}
Expand Down Expand Up @@ -418,8 +418,7 @@ <h2 id="from_int"><pre class="hljs language-aiken">from_int(self: Int) -&gt; Byt
<div class="rendered-markdown"><p>Convert a integer into a hexadecimal bytearray. This works for all integers
but odd length bytearrays will be prefixed with a zero. This function
combined with the <code>to_int</code> function allows a string to represent a number
and still be used for calculations, pushing the <code>2^64 - 1</code> integer boundary
to <code>2^256 - 1</code>.</p>
and still be used for calculations, pushing the <code>2^64 - 1</code> integer boundary.</p>
<pre><code class="language-aiken">maths.from_int(44203)
</code></pre>
</div>
Expand Down Expand Up @@ -679,8 +678,8 @@ <h2 id="to_int"><pre class="hljs language-aiken">to_int(self: ByteArray) -&gt; I
});
</script>
<script src="../js/lunr.min.js?v=1.0.21-alpha"></script>
<script src="../js/index.js?v=1702934185"></script>
<script src="../js/index.js?v=1702994576"></script>
<!-- Load the search index using JSONP to avoid CORS issues -->
<script src="../search-data.js?v=1702934185"></script>
<script src="../search-data.js?v=1702994576"></script>
</body>
</html>
Loading

0 comments on commit 6f0575c

Please sign in to comment.