Skip to content

Commit

Permalink
Prepare release v8.0.0 (#506)
Browse files Browse the repository at this point in the history
  • Loading branch information
hanssv committed Apr 18, 2024
1 parent 51bae61 commit ffdd4ec
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 12 deletions.
19 changes: 9 additions & 10 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]
### Added
- Support for OTP-27 - no changes in behavior.
- Signature literals `sg_...` - they have type `signature` (which is an alias for `bytes(64)`).
### Changed
- System aliases are handled explicitly when converting to a Sophia value, this is only
observable for `signature` where a value of type `signature` is now represented as a
(new) signature literal.
### Removed
### Fixed
- Allow self-qualification, i.e. referencing `X.foo` when in namespace `X`.

## [8.0.0-rc1]
## [8.0.0]
### Added
- Bitwise operations for integers: `band`, `bor`, `bxor`, `bnot`, `<<` and `>>`.
- `Int.mulmod` - combined builtin operation for multiplication and modulus.
Expand All @@ -37,9 +30,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- `Chain.network_id` - a function to get hold of the Chain's network id.
- Allowing `Bytes.to_any_size` in calldata creation, to enable creation of arguments
with arbitray size.
- Signature literals `sg_...` - they have type `signature` (which is an alias for `bytes(64)`).
- Support for OTP-27 - no changes in behavior.
### Changed
- `Crypto.verify_sig` is changed to have `msg : bytes()`. I.e. the
signed data can be of any length (used to be limited to `bytes(32)`/`hash`).
- System aliases are handled explicitly when converting to a Sophia value, this is only
observable for `signature` where a value of type `signature` is now represented as a
(new) signature literal.
- Allow self-qualification, i.e. referencing `X.foo` when in namespace `X`.
### Removed
- `Bitwise.aes` standard library is removed - the builtin operations are superior.

Expand Down Expand Up @@ -451,8 +450,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/v8.0.0-rc1...HEAD
[8.0.0-rc1]: https://github.com/aeternity/aesophia/compare/v7.4.1...v8.0.0-rc1
[Unreleased]: https://github.com/aeternity/aesophia/compare/v8.0.0...HEAD
[8.0.0]: https://github.com/aeternity/aesophia/compare/v7.4.1...v8.0.0
[7.4.1]: https://github.com/aeternity/aesophia/compare/v7.4.0...v7.4.1
[7.4.0]: https://github.com/aeternity/aesophia/compare/v7.3.0...v7.4.0
[7.3.0]: https://github.com/aeternity/aesophia/compare/v7.2.1...v7.3.0
Expand Down
2 changes: 1 addition & 1 deletion rebar.config
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
{base_plt_apps, [erts, kernel, stdlib, crypto, mnesia]}
]}.

{relx, [{release, {aesophia, "8.0.0-rc1"},
{relx, [{release, {aesophia, "8.0.0"},
[aesophia, aebytecode]},

{dev_mode, true},
Expand Down
2 changes: 1 addition & 1 deletion src/aesophia.app.src
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{application, aesophia,
[{description, "Compiler for Aeternity Sophia language"},
{vsn, "8.0.0-rc1"},
{vsn, "8.0.0"},
{registered, []},
{applications,
[kernel,
Expand Down

0 comments on commit ffdd4ec

Please sign in to comment.