From 95f39184ae1a56fbfe736863156e2c70d083c658 Mon Sep 17 00:00:00 2001 From: miguelis Date: Sat, 5 Nov 2022 19:18:40 +0100 Subject: [PATCH] Update RELEASES.md --- RELEASES.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/RELEASES.md b/RELEASES.md index c47bf79ce..3dd8861de 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -1,4 +1,17 @@ # Release notes +## November 4, 2022 circom 2.1.1 + #### Extensions + - New feature of anonymous components: programmers can pass the parameters indicate the input names receiving the values.[See here](https://github.com/iden3/circom/blob/master/mkdocs/docs/circom-language/anonymous-components-and-tuples.md). + - circom now exits with 0 when it finishes successfully (last version exists with Exist(0) which broke some projects). + - Improving tags assignment: case multiple assignments in an array giving the same value to a tag. + - Allowing in cpp the use of binary, octal and hexadecimal numbers as inputs from a json file + - Adding support for non-64bit architectures. + - Witness_calculator adapted to work with negative numbers in the json input. + + #### Fixed bugs + - Fixing bug in C++ witness generation: function Fr_toInt in fr.asm + - Improving error handling division by zero (instead of throwing a panic) + ## October 11, 2022 circom 2.1.0 #### New features - Tags: more information [here](https://github.com/iden3/circom/blob/master/mkdocs/docs/circom-language/tags.md).