Skip to content
This repository has been archived by the owner on Sep 15, 2024. It is now read-only.

Commit

Permalink
Merge pull request #18 from ariady-putra/main
Browse files Browse the repository at this point in the history
`stdlib v2.1.0`
  • Loading branch information
ariady-putra authored Sep 15, 2024
2 parents 061d3ff + 1975008 commit b07b663
Show file tree
Hide file tree
Showing 7 changed files with 60 additions and 56 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4.1.7

- uses: aiken-lang/setup-aiken@v1
with:
version: v1.1.0
version: v1.1.2

- run: aiken fmt --check
- run: aiken c -D
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

A utility library to help constructing `ScriptContext`, useful for testing.

| ℹ️ | Package info | aiken-extra/tx_util v1.200.202409 | 🐞 |
| ℹ️ | Package info | aiken-extra/tx_util v1.210.202409 | 🐞 |
| --- | --------------- | --------------------------------- | --- |
| 🟢 | **Depends on** | **aiken-lang/stdlib v2.0.0** | ✔️ |
| 🟢 | **Tested with** | **aiken v1.1.0** | ✔️ |
| 🟢 | **Depends on** | **aiken-lang/stdlib v2.1.0** | ✔️ |
| 🟢 | **Tested with** | **aiken v1.1.2** | ✔️ |

## Usage Example

Expand Down
5 changes: 2 additions & 3 deletions aiken.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,13 @@

[[requirements]]
name = "aiken-lang/stdlib"
version = "v2"
version = "v2.1.0"
source = "github"

[[packages]]
name = "aiken-lang/stdlib"
version = "v2"
version = "v2.1.0"
requirements = []
source = "github"

[etags]
"aiken-lang/stdlib@v2" = [{ secs_since_epoch = 1725443763, nanos_since_epoch = 768204478 }, "d79382d2b6ecb3aee9b0755c31d8a5bbafe88a7b3706d7fb8a52fd4d05818501"]
4 changes: 2 additions & 2 deletions aiken.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name = "aiken-extra/tx_util"
version = "1.200.202409"
version = "1.210.202409"
license = "Apache-2.0"
description = "A Aiken utility library to help constructing ScriptContext"

Expand All @@ -10,5 +10,5 @@ platform = "github"

[[dependencies]]
name = "aiken-lang/stdlib"
version = "v2"
version = "v2.1.0"
source = "github"
5 changes: 5 additions & 0 deletions docs/css/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -633,6 +633,11 @@ table tr:nth-child(2n) {

/* Dark Theme Option */

html.theme-dark {
--color-text: #cdd6f4;
--color-background: #1e1e2e;
}

body.theme-dark {
/* Colors */
--color-text: #cdd6f4;
Expand Down
24 changes: 12 additions & 12 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
<meta name="theme-color" content="#eff1f5" media="(prefers-color-scheme: light)"/>
<meta name="theme-color" content="#1e1e2e" media="(prefers-color-scheme: dark)"/>
<link rel="icon" type="image/svg+xml" sizes="any" href="./favicon.svg"/>
<link rel="stylesheet" href="./css/index.css?v=1.1.0" type="text/css"/>
<link id="syntax-theme" rel="stylesheet" href="./css/atom-one-light.min.css?v=1.1.0"/>
<link rel="stylesheet" href="./css/index.css?v=1.1.2" type="text/css"/>
<link id="syntax-theme" rel="stylesheet" href="./css/atom-one-light.min.css?v=1.1.2"/>
</head>
<body class="prewrap-off theme-light drawer-closed">
<script>
Expand Down Expand Up @@ -120,13 +120,13 @@
<h2>
<a href="./">tx_util</a>
<span id="project-version">
<span>1.200.202409 </span>
<span>1.210.202409 </span>
</span>
<script>
"use strict";

if ("undefined" !== typeof versionNodes) {
const currentVersion = "v1.200.202409";
const currentVersion = "v1.210.202409";
if (! versionNodes.find(element => element.version === currentVersion)) {
versionNodes.unshift({ version: currentVersion, url: "#" });
}
Expand Down Expand Up @@ -210,9 +210,9 @@ <h2>Modules</h2>

<h1>tx_util</h1>
<p>A utility library to help constructing <code>ScriptContext</code>, useful for testing.</p>
<table><thead><tr><th>ℹ️</th><th>Package info</th><th>aiken-extra/tx_util v1.200.202409</th><th>🐞</th></tr></thead><tbody>
<tr><td>🟢</td><td><strong>Depends on</strong></td><td><strong>aiken-lang/stdlib v2.0.0</strong></td><td>✔️</td></tr>
<tr><td>🟢</td><td><strong>Tested with</strong></td><td><strong>aiken v1.1.0</strong></td><td>✔️</td></tr>
<table><thead><tr><th>ℹ️</th><th>Package info</th><th>aiken-extra/tx_util v1.210.202409</th><th>🐞</th></tr></thead><tbody>
<tr><td>🟢</td><td><strong>Depends on</strong></td><td><strong>aiken-lang/stdlib v2.1.0</strong></td><td>✔️</td></tr>
<tr><td>🟢</td><td><strong>Tested with</strong></td><td><strong>aiken v1.1.2</strong></td><td>✔️</td></tr>
</tbody></table>
<h2>Usage Example</h2>
<pre><code class="language-gleam">use tx_util/builder.{
Expand Down Expand Up @@ -341,8 +341,8 @@ <h2>Usage Example</h2>
</defs>
</svg>

<script src="./js/highlight.min.js?v=1.1.0"></script>
<script src="./js/highlightjs-aiken.js?v=1.1.0"></script>
<script src="./js/highlight.min.js?v=1.1.2"></script>
<script src="./js/highlightjs-aiken.js?v=1.1.2"></script>
<script>
document.querySelectorAll("pre code").forEach((elem) => {
if (elem.className === "") {
Expand Down Expand Up @@ -384,10 +384,10 @@ <h2>Usage Example</h2>
</script>
<script src="https://unpkg.com/@popperjs/core@2"></script>
<script src="https://unpkg.com/tippy.js@6"></script>
<script src="./js/lunr.min.js?v=1.1.0"></script>
<script src="./js/index.js?v=1725445978"></script>
<script src="./js/lunr.min.js?v=1.1.2"></script>
<script src="./js/index.js?v=1726368001"></script>
<!-- Load the search index using JSONP to avoid CORS issues -->
<script src="./search-data.js?v=1725445978"></script>
<script src="./search-data.js?v=1726368001"></script>
<script>
void function() {
if (typeof tippy !== "undefined") {
Expand Down
Loading

0 comments on commit b07b663

Please sign in to comment.