From b182e478fae5059632b8605cc9c54e67ad9898df Mon Sep 17 00:00:00 2001 From: Denis Varlakov Date: Mon, 23 Sep 2024 12:11:25 +0200 Subject: [PATCH 1/4] Update contribution guidelines Signed-off-by: Denis Varlakov --- CONTRIBUTING.md | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 9484b46..288d8e8 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -2,10 +2,14 @@ Thanks for taking interest to contributing to our project! +## Join us in Discord! +We welcome all contributors to communicate with us [in Discord]! Please, reach out to us +in `#lockness-contribute` room. + ## Pull Requests -Prior to making a PR, we ask you to communicate it with us, preferably by opening an issue. -This would help to keep your work aligned with the maintainers view and get insights from -them. +Prior to making a PR, we ask you to communicate it with us, either [in Discord] or, if you +prefer, by opening an issue in the repo. This would help to keep your work aligned with the +maintainers view and avoid situations in which we can't accept your contribution. All commits are required to be signed via verified GPG key. You can read about commit signing in [this series of articles](https://docs.github.com/en/authentication/managing-commit-signature-verification) @@ -62,3 +66,7 @@ communicate with us for other reasons. However, if you want to report something that you believe might be a security vulnerability or a security flaw in this or any upstream project, please report it following the procedure described in [SECURITY.md](./SECURITY.md). + +Feel free to reach out to us [in Discord] as well. + +[in Discord]: https://discordapp.com/channels/905194001349627914/1285268686147424388 From fd18b25d43d608b27dc0320c3c537f8c213450a8 Mon Sep 17 00:00:00 2001 From: Denis Varlakov Date: Mon, 23 Sep 2024 12:14:12 +0200 Subject: [PATCH 2/4] Add discord badge Signed-off-by: Denis Varlakov --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 9c171ee..6645965 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,9 @@ ![License](https://img.shields.io/crates/l/paillier-zk.svg) [![Docs](https://docs.rs/paillier-zk/badge.svg)](https://docs.rs/paillier-zk) [![Crates io](https://img.shields.io/crates/v/paillier-zk.svg)](https://crates.io/crates/paillier-zk) +[![Discord](https://img.shields.io/discord/905194001349627914?logo=discord&logoColor=ffffff&label=Discord)][in Discord] + +[in Discord]: https://discordapp.com/channels/905194001349627914/1285268686147424388 # paillier-zk From 5cc0b5361d9ae233789e4baf75cb3548f7a9efaa Mon Sep 17 00:00:00 2001 From: Denis Varlakov Date: Mon, 23 Sep 2024 12:18:08 +0200 Subject: [PATCH 3/4] Update links Signed-off-by: Denis Varlakov --- CHANGELOG.md | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f832611..9e1fafc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,7 @@ ## v0.4.1 * Prettify code by using `#[udigest(as = ...)]` attribute [#51] -[#51]: https://github.com/dfns/paillier-zk/pull/51 +[#51]: https://github.com/LFDT-Lockness/paillier-zk/pull/51 ## v0.4.0 * security fix: derive challenges for zero-knowledge proof unambiguously @@ -9,7 +9,7 @@ ## v0.3.0 * Update `generic-ec` dep to v0.3 [#48] -[#48]: https://github.com/dfns/paillier-zk/pull/48 +[#48]: https://github.com/LFDT-Lockness/paillier-zk/pull/48 ## v0.2.0 diff --git a/Cargo.toml b/Cargo.toml index 5394796..885f068 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ version = "0.4.1" edition = "2021" license = "MIT OR Apache-2.0" description = "ZK-proofs for Paillier encryption scheme" -repository = "https://github.com/dfns/paillier-zk" +repository = "https://github.com/LFDT-Lockness/paillier-zk" categories = ["algorithms", "cryptography"] keywords = ["paillier", "zk-proofs", "zero-knowledge"] From 928d67c6cfc1f53af9fbfb52554d2af061ddabff Mon Sep 17 00:00:00 2001 From: Denis Varlakov Date: Mon, 23 Sep 2024 12:21:55 +0200 Subject: [PATCH 4/4] Bump version, update changelog Signed-off-by: Denis Varlakov --- CHANGELOG.md | 5 +++++ Cargo.toml | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9e1fafc..bb8f44c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## v0.4.2 +* Update links in the crate settings, update readme [#53] + +[#53]: https://github.com/LFDT-Lockness/paillier-zk/pull/53 + ## v0.4.1 * Prettify code by using `#[udigest(as = ...)]` attribute [#51] diff --git a/Cargo.toml b/Cargo.toml index 885f068..790892b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "paillier-zk" -version = "0.4.1" +version = "0.4.2" edition = "2021" license = "MIT OR Apache-2.0" description = "ZK-proofs for Paillier encryption scheme"