Prepare for v3.0.0
This commit is contained in:
parent
be7c0e1bd4
commit
94689dd0e9
25
CHANGELOG.md
25
CHANGELOG.md
@ -6,11 +6,29 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
### Added
|
### Added
|
||||||
- `stateful` annotations are now properly enforced. Functions must be marked stateful
|
|
||||||
in order to update the state or spend tokens.
|
|
||||||
### Changed
|
### Changed
|
||||||
### Removed
|
### Removed
|
||||||
|
|
||||||
|
## [3.0.0] - 2019-05-21
|
||||||
|
### Added
|
||||||
|
- `stateful` annotations are now properly enforced. Functions must be marked stateful
|
||||||
|
in order to update the state or spend tokens.
|
||||||
|
- Primitives `Contract.creator`, `Address.is_contract`, `Address.is_oracle`,
|
||||||
|
`Oracle.check` and `Oracle.check_query` has been added to Sophia.
|
||||||
|
- A byte array type `bytes(N)` has been added to generalize `hash (== bytes(32))` and
|
||||||
|
`signature (== bytes(64))` and allow for byte arrays of arbitrary fixed length.
|
||||||
|
- `Crypto.ecverify_secp256k1` has been added.
|
||||||
|
### Changed
|
||||||
|
- Address literals (+ Oracle, Oracle query and remote contracts) have been changed
|
||||||
|
from `#<hex>` to address as `ak_<base58check>`, oracle `ok_<base58check>`,
|
||||||
|
oracle query `oq_<base58check>` and remote contract `ct_<base58check>`.
|
||||||
|
- The compilation and typechecking of `letfun` (e.g. `let m(f, xs) = map(f, xs)`) was
|
||||||
|
not working properly and has been fixed.
|
||||||
|
### Removed
|
||||||
|
- `let rec` has been removed from the language, it has never worked.
|
||||||
|
- The standalone CLI compiler is served in the repo `aeternity/aesophia_cli` and has
|
||||||
|
been completely removed from `aesophia`.
|
||||||
|
|
||||||
## [2.1.0] - 2019-04-11
|
## [2.1.0] - 2019-04-11
|
||||||
### Added
|
### Added
|
||||||
- Stubs (not yet wired up) for compilation to FATE
|
- Stubs (not yet wired up) for compilation to FATE
|
||||||
@ -37,6 +55,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
- Simplify calldata creation - instead of passing a compiled contract, simply
|
- Simplify calldata creation - instead of passing a compiled contract, simply
|
||||||
pass a (stubbed) contract string.
|
pass a (stubbed) contract string.
|
||||||
|
|
||||||
[Unreleased]: https://github.com/aeternity/aesophia/compare/v2.1.0...HEAD
|
[Unreleased]: https://github.com/aeternity/aesophia/compare/v3.0.0...HEAD
|
||||||
|
[3.0.0]: https://github.com/aeternity/aesophia/compare/v2.1.0...v3.0.0
|
||||||
[2.1.0]: https://github.com/aeternity/aesophia/compare/v2.0.0...v2.1.0
|
[2.1.0]: https://github.com/aeternity/aesophia/compare/v2.0.0...v2.1.0
|
||||||
[2.0.0]: https://github.com/aeternity/aesophia/tag/v2.0.0
|
[2.0.0]: https://github.com/aeternity/aesophia/tag/v2.0.0
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
{base_plt_apps, [erts, kernel, stdlib, crypto, mnesia]}
|
{base_plt_apps, [erts, kernel, stdlib, crypto, mnesia]}
|
||||||
]}.
|
]}.
|
||||||
|
|
||||||
{relx, [{release, {aesophia, "2.1.0"},
|
{relx, [{release, {aesophia, "3.0.0"},
|
||||||
[aesophia, aebytecode, getopt]},
|
[aesophia, aebytecode, getopt]},
|
||||||
|
|
||||||
{dev_mode, true},
|
{dev_mode, true},
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{application, aesophia,
|
{application, aesophia,
|
||||||
[{description, "Contract Language for aeternity"},
|
[{description, "Contract Language for aeternity"},
|
||||||
{vsn, "2.1.0"},
|
{vsn, "3.0.0"},
|
||||||
{registered, []},
|
{registered, []},
|
||||||
{applications,
|
{applications,
|
||||||
[kernel,
|
[kernel,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user