From 8f42e72bc2fc3d274f67bfa69ff8d27a15ff0055 Mon Sep 17 00:00:00 2001 From: Robin Freyler Date: Mon, 20 Sep 2021 09:55:30 +0200 Subject: [PATCH] update preliminary release notes --- RELEASES.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/RELEASES.md b/RELEASES.md index af27e82182..bbfe067239 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -1,3 +1,15 @@ +# Version 3.0-rc6 (UNRELEASED) + +This is the 6th release candidate for ink! 3.0. + +## Changed + +- Message and constructor selectors no longer take their inputs as string but as `u32` decodable integer. For example: + + - It is no longer possible to specify a selector as `#[ink(selector = "0xC0DECAFE")]`. + - The newly allowed formats are `#[ink(selector = 0xC0DECAFE)]` and `#[ink(selector = 42)]`. + - Smart contract authors are required to update their smart contracts for this change. + # Version 3.0-rc5 (2021-09-08) This is the 5th release candidate for ink! 3.0.