Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- uses: actions/checkout@v3
- uses: aiken-lang/setup-aiken@v1
with:
version: v1.1.2
version: v1.1.4
- run: aiken fmt --check
- run: aiken check -D
- run: aiken build
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
# v0.x.y

# v0.5.1

*This version is contains breaking changes.*

- Added minting.quantity_of to get prove that some form of minting is occurring then the quantity is returned
- Added minting.quantity_of to prove that some form of minting is occurring then the quantity is returned
- Changing sha3_256 to blake2b_256, it is cheaper to compute
- value.unique_token_name has been changed to the v3 version, no more hashing and has a personal tag feature
- Updated aiken to v1.1.2 and stdlib to v2.1.0
Expand Down
7 changes: 4 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,10 @@ Example Contributions:
```md
# v0.x.y

- some new thing
- fixed or updated something
- something is gone now
- added some new thing
- fixed that one thing
- updated this thing
- removed something
```

Once a release is ready `# v0.x.y` gets replaced with a version number, i.e. `# v0.4.0`. Usually the maintainers will handle the section renaming along with creating a new empty `# v0.x.y` section at the top of the changelog. When releasing a new version the version number needs to be updated inside `README.md`, `aiken.toml`, and the `CHANGELOG.md`. Run the command below to do a fresh test and rebuild the docs for the final push.
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ The **Aiken Assist Library** is a collection of specialized functions for [Aiken

aiken's version | assist's version
--- | ---
`v1.1.0` | `>= v0.5.0`
`v1.1.4` | `>= v0.5.1`
`v1.0.29-alpha` | `== v0.4.11`

Assist library `v0.5.x` will be Plutus V3+. For Plutus V2 contracts use the `v0.4.11` branch.
Assist library `v0.5.x+` will be Plutus V3+. For Plutus V2 contracts use the `v0.4.11` branch.

## Getting Started

Expand All @@ -18,10 +18,10 @@ To start using the library, follow these steps:
1. Import the library with the command:

```bash
aiken packages add logical-mechanism/assist --version v0.5.0
aiken packages add logical-mechanism/assist --version v0.5.1
```

- Stay up to date by updating the version to the newest tag when applicable, i.e. `v0.5.0` -> `v0.5.x`.
- Stay up to date by updating the version to the newest tag when applicable, i.e. `v0.5.1` -> `v0.5.x`.

2. Compile your project by running the command `aiken check` in your project directory. If a complete recheck is required then run the command:

Expand Down
4 changes: 2 additions & 2 deletions aiken.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "logical-mechanism/Assist"
version = "v0.5.0"
compiler = "v1.1.2"
version = "v0.5.1"
compiler = "v1.1.4"
plutus = "v3"
license = "Apache-2.0"
description = "Aiken Assist Library"
Expand Down
Loading
Loading