From 01d654588abe12b7c907d8d24a26bb7d8f2ff120 Mon Sep 17 00:00:00 2001 From: Marc Velmer Date: Fri, 21 Jul 2023 17:36:47 +0200 Subject: [PATCH] v0.0.17 bump --- CHANGELOG.md | 11 +++++++++++ README.md | 8 ++++---- package.json | 2 +- 3 files changed, 16 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 45f35d83..79837df7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.0.17] - 2023-07-21 + +### Added + +- Anonymous support using zkSNARK. + +### Changed + +- Election `meta` field has a more lax typing. + ## [0.0.16] - 2023-07-04 ### Added @@ -201,6 +211,7 @@ which extend from the abstract `Election` class. - First unstable version of the SDK for testing purposes +[0.0.17]: https://github.com/vocdoni/vocdoni-sdk/releases/tag/v0.0.17 [0.0.16]: https://github.com/vocdoni/vocdoni-sdk/releases/tag/v0.0.16 [0.0.15]: https://github.com/vocdoni/vocdoni-sdk/releases/tag/v0.0.15 [0.0.14]: https://github.com/vocdoni/vocdoni-sdk/releases/tag/v0.0.14 diff --git a/README.md b/README.md index f3f1bf9b..9827ca28 100644 --- a/README.md +++ b/README.md @@ -41,9 +41,9 @@ For creating elections or vote on them, blockchain transactions need to be build, thus a signer is required. Any kind of standard [ethers] signer should work. -This project has been bundled into many different formats in order for you to +This project has been bundled into many formats in order for you to import it based on the environment you're using it. When importing it via -`@vocdoni/sdk` it will chose a version based on your current environment +`@vocdoni/sdk` it will choose a version based on your current environment (commonjs or esm). There's also another UMD version which can be accessed via `@vocdoni/sdk/umd` in case you need it. @@ -145,7 +145,7 @@ The `createAccount` also accepts some information about the account: ### Vocdoni tokens; faucet & balance Accounts require Vocdoni tokens in order to be able to register against our -blokchain. The process above will automatically fetch some tokens from a faucet +blockchain. The process above will automatically fetch some tokens from a faucet **under development**. For production environments, you should contact us (Vocdoni) for a byte64 string faucet, and specify it when creating your account: @@ -275,7 +275,7 @@ election.addQuestion('Ain\'t this process awesome?', 'Question description', [ ]) ~~~ -> If you're a developer, maybe the value set to zero in Yes (and viceversa) +> If you're a developer, maybe the value set to zero in Yes (and vice-versa) > confuses you. Note that this is a mapping of values; people voting on Yes will > properly set the value as specified (zero in this case), thus printing the > results as you expect. diff --git a/package.json b/package.json index 5b9197dc..bb97f59a 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@vocdoni/sdk", "author": "Vocdoni", - "version": "0.0.16", + "version": "0.0.17", "description": "⚒️An SDK for building applications on top of Vocdoni API", "repository": "https://github.com/vocdoni/vocdoni-sdk.git", "license": "AGPL-3.0-or-later",