From 1a1541028c5a7eece48f665cb901582343f38bd4 Mon Sep 17 00:00:00 2001 From: radrow Date: Mon, 5 Jul 2021 14:37:42 +0200 Subject: [PATCH 1/2] Prepare 6.0.2 --- CHANGELOG.md | 8 +++++++- rebar.config | 2 +- src/aesophia.app.src | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 36ddbe8..d83dd22 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed ### Removed +## [6.0.2] 2021-07-05 +### Changed +- `List.from_to_step` now forbids non-positive step +- Fixed leaking state between contracts + ## [6.0.1] 2021-06-24 ### Changed - Fixed a bug in calldata encoding for contracts containing multiple contracts @@ -303,7 +308,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.1...HEAD +[Unreleased]: https://github.com/aeternity/aesophia/compare/v6.0.2...HEAD +[6.0.2]: https://github.com/aeternity/aesophia/compare/v6.0.1...v6.0.2 [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 diff --git a/rebar.config b/rebar.config index fbd188d..e9c1e04 100644 --- a/rebar.config +++ b/rebar.config @@ -15,7 +15,7 @@ {base_plt_apps, [erts, kernel, stdlib, crypto, mnesia]} ]}. -{relx, [{release, {aesophia, "6.0.1"}, +{relx, [{release, {aesophia, "6.0.2"}, [aesophia, aebytecode, getopt]}, {dev_mode, true}, diff --git a/src/aesophia.app.src b/src/aesophia.app.src index d2d7712..b1c36bb 100644 --- a/src/aesophia.app.src +++ b/src/aesophia.app.src @@ -1,6 +1,6 @@ {application, aesophia, [{description, "Compiler for Aeternity Sophia language"}, - {vsn, "6.0.1"}, + {vsn, "6.0.2"}, {registered, []}, {applications, [kernel, -- 2.30.2 From 71f77a8e025b60adec685ef494854a2f8bedef14 Mon Sep 17 00:00:00 2001 From: radrow Date: Mon, 5 Jul 2021 15:18:22 +0200 Subject: [PATCH 2/2] Minor note --- CHANGELOG.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d83dd22..ea32d45 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,7 +11,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [6.0.2] 2021-07-05 ### Changed -- `List.from_to_step` now forbids non-positive step +- `List.from_to_step` now forbids non-positive step (this change does + *not* alter the behavior of the previously deployed contracts) - Fixed leaking state between contracts ## [6.0.1] 2021-06-24 -- 2.30.2