Skip to content

Commit 1975ccf

Browse files
authored
Merge pull request #322 from aeternity/prepare_6.0.1
Prepare 6.0.1
2 parents 393d771 + 4f68729 commit 1975ccf

File tree

4 files changed

+12
-6
lines changed

4 files changed

+12
-6
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99
### Changed
1010
### Removed
1111

12+
## [6.0.1] 2021-06-24
13+
### Changed
14+
- Fixed a bug in calldata encoding for contracts containing multiple contracts
15+
- Fixed a missing `include` in the `Frac` standard library
16+
1217
## [6.0.0] 2021-05-26
1318
### Added
1419
- Child contracts
@@ -298,7 +303,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
298303
- Simplify calldata creation - instead of passing a compiled contract, simply
299304
pass a (stubbed) contract string.
300305
301-
[Unreleased]: https://github.com/aeternity/aesophia/compare/v6.0.0...HEAD
306+
[Unreleased]: https://github.com/aeternity/aesophia/compare/v6.0.1...HEAD
307+
[6.0.1]: https://github.com/aeternity/aesophia/compare/v6.0.0...v6.0.1
302308
[6.0.0]: https://github.com/aeternity/aesophia/compare/v5.0.0...v6.0.0
303309
[5.0.0]: https://github.com/aeternity/aesophia/compare/v4.3.0...v5.0.0
304310
[4.3.0]: https://github.com/aeternity/aesophia/compare/v4.2.0...v4.3.0

docs/sophia.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -802,8 +802,8 @@ will emit one Event of each kind in the example.
802802

803803
```sophia
804804
entrypoint emit_events() : () =
805-
Chain.event(TheFirstEvent(42))
806-
Chain.event(AnotherEvent(Contract.address, "This is not indexed"))
805+
Chain.event(Event1(42, 34, "foo"))
806+
Chain.event(Event2("This is not indexed", Contract.address))
807807
```
808808

809809
#### Argument order

rebar.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
{base_plt_apps, [erts, kernel, stdlib, crypto, mnesia]}
1616
]}.
1717

18-
{relx, [{release, {aesophia, "6.0.0"},
18+
{relx, [{release, {aesophia, "6.0.1"},
1919
[aesophia, aebytecode, getopt]},
2020

2121
{dev_mode, true},

src/aesophia.app.src

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{application, aesophia,
2-
[{description, "Contract Language for aeternity"},
3-
{vsn, "6.0.0"},
2+
[{description, "Compiler for Aeternity Sophia language"},
3+
{vsn, "6.0.1"},
44
{registered, []},
55
{applications,
66
[kernel,

0 commit comments

Comments
 (0)