Skip to content

Commit

Permalink
Merge pull request #322 from aeternity/prepare_6.0.1
Browse files Browse the repository at this point in the history
Prepare 6.0.1
  • Loading branch information
hanssv authored Jun 24, 2021
2 parents 393d771 + 4f68729 commit 1975ccf
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
### Removed

## [6.0.1] 2021-06-24
### Changed
- Fixed a bug in calldata encoding for contracts containing multiple contracts
- Fixed a missing `include` in the `Frac` standard library

## [6.0.0] 2021-05-26
### Added
- Child contracts
Expand Down Expand Up @@ -298,7 +303,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Simplify calldata creation - instead of passing a compiled contract, simply
pass a (stubbed) contract string.

[Unreleased]: https://github.com/aeternity/aesophia/compare/v6.0.0...HEAD
[Unreleased]: https://github.com/aeternity/aesophia/compare/v6.0.1...HEAD
[6.0.1]: https://github.com/aeternity/aesophia/compare/v6.0.0...v6.0.1
[6.0.0]: https://github.com/aeternity/aesophia/compare/v5.0.0...v6.0.0
[5.0.0]: https://github.com/aeternity/aesophia/compare/v4.3.0...v5.0.0
[4.3.0]: https://github.com/aeternity/aesophia/compare/v4.2.0...v4.3.0
Expand Down
4 changes: 2 additions & 2 deletions docs/sophia.md
Original file line number Diff line number Diff line change
Expand Up @@ -802,8 +802,8 @@ will emit one Event of each kind in the example.

```sophia
entrypoint emit_events() : () =
Chain.event(TheFirstEvent(42))
Chain.event(AnotherEvent(Contract.address, "This is not indexed"))
Chain.event(Event1(42, 34, "foo"))
Chain.event(Event2("This is not indexed", Contract.address))
```

#### Argument order
Expand Down
2 changes: 1 addition & 1 deletion rebar.config
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
{base_plt_apps, [erts, kernel, stdlib, crypto, mnesia]}
]}.

{relx, [{release, {aesophia, "6.0.0"},
{relx, [{release, {aesophia, "6.0.1"},
[aesophia, aebytecode, getopt]},

{dev_mode, true},
Expand Down
4 changes: 2 additions & 2 deletions src/aesophia.app.src
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{application, aesophia,
[{description, "Contract Language for aeternity"},
{vsn, "6.0.0"},
[{description, "Compiler for Aeternity Sophia language"},
{vsn, "6.0.1"},
{registered, []},
{applications,
[kernel,
Expand Down

0 comments on commit 1975ccf

Please sign in to comment.