Skip to content

Commit 9e9dd8e

Browse files
Merge pull request #100 from logical-mechanism/candidate-for-v0.5.1
Candidate for v0.5.1
2 parents 3439596 + 05f0366 commit 9e9dd8e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

65 files changed

+673
-19577
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- uses: actions/checkout@v3
1313
- uses: aiken-lang/setup-aiken@v1
1414
with:
15-
version: v1.1.2
15+
version: v1.1.4
1616
- run: aiken fmt --check
1717
- run: aiken check -D
1818
- run: aiken build

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
# v0.x.y
22

3+
# v0.5.1
4+
35
*This version is contains breaking changes.*
46

5-
- Added minting.quantity_of to get prove that some form of minting is occurring then the quantity is returned
7+
- Added minting.quantity_of to prove that some form of minting is occurring then the quantity is returned
68
- Changing sha3_256 to blake2b_256, it is cheaper to compute
79
- value.unique_token_name has been changed to the v3 version, no more hashing and has a personal tag feature
810
- Updated aiken to v1.1.2 and stdlib to v2.1.0

CONTRIBUTING.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,10 @@ Example Contributions:
3535
```md
3636
# v0.x.y
3737

38-
- some new thing
39-
- fixed or updated something
40-
- something is gone now
38+
- added some new thing
39+
- fixed that one thing
40+
- updated this thing
41+
- removed something
4142
```
4243

4344
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.

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ The **Aiken Assist Library** is a collection of specialized functions for [Aiken
66

77
aiken's version | assist's version
88
--- | ---
9-
`v1.1.0` | `>= v0.5.0`
9+
`v1.1.4` | `>= v0.5.1`
1010
`v1.0.29-alpha` | `== v0.4.11`
1111

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

1414
## Getting Started
1515

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

2020
```bash
21-
aiken packages add logical-mechanism/assist --version v0.5.0
21+
aiken packages add logical-mechanism/assist --version v0.5.1
2222
```
2323

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

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

aiken.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "logical-mechanism/Assist"
2-
version = "v0.5.0"
3-
compiler = "v1.1.2"
2+
version = "v0.5.1"
3+
compiler = "v1.1.4"
44
plutus = "v3"
55
license = "Apache-2.0"
66
description = "Aiken Assist Library"

0 commit comments

Comments
 (0)